-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generic Guns: Bandoliers and bugfixes (#37666)
* more hotfixes * Update active_bots.json
- Loading branch information
1 parent
4bfc1e6
commit a63aaad
Showing
8 changed files
with
107 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
[ | ||
{ | ||
"id": "bandolier_pistol", | ||
"copy-from": "bandolier_pistol", | ||
"type": "ARMOR", | ||
"name": { "str": "pistol bandolier" }, | ||
"use_action": { | ||
"type": "bandolier", | ||
"capacity": 18, | ||
"ammo": [ "ammo_pistol_tiny", "ammo_pistol", "ammo_pistol_magnum" ], | ||
"draw_cost": 20 | ||
} | ||
}, | ||
{ | ||
"id": "bandolier_rifle", | ||
"copy-from": "bandolier_rifle", | ||
"type": "ARMOR", | ||
"name": { "str": "rifle bandolier" }, | ||
"use_action": { "type": "bandolier", "capacity": 16, "ammo": [ "ammo_rifle", "ammo_rifle_huge" ], "draw_cost": 20 } | ||
}, | ||
{ | ||
"id": "bandolier_shotgun", | ||
"copy-from": "bandolier_shotgun", | ||
"type": "ARMOR", | ||
"name": { "str": "waist shotgun bandolier" }, | ||
"use_action": { "type": "bandolier", "capacity": 25, "ammo": [ "ammo_shot", "signal_flare" ], "draw_cost": 25 } | ||
}, | ||
{ | ||
"id": "torso_bandolier_shotgun", | ||
"copy-from": "torso_bandolier_shotgun", | ||
"type": "ARMOR", | ||
"name": { "str": "torso shotgun bandolier" }, | ||
"use_action": { "type": "bandolier", "capacity": 50, "ammo": [ "ammo_shot", "signal_flare" ], "draw_cost": 35 } | ||
}, | ||
{ | ||
"id": "flintlock_pouch", | ||
"copy-from": "flintlock_pouch", | ||
"type": "ARMOR", | ||
"name": { "str": "paper cartridge pouch", "str_pl": "paper cartridge pouches" }, | ||
"use_action": { "type": "bandolier", "capacity": 14, "ammo": [ "ammo_black_powder", "blunderbuss", "shotcanister" ], "draw_cost": 20 } | ||
}, | ||
{ | ||
"id": "bandolier_wrist", | ||
"copy-from": "bandolier_wrist", | ||
"type": "ARMOR", | ||
"name": { "str": "wrist bandolier" }, | ||
"use_action": { "type": "bandolier", "capacity": 4, "ammo": [ "ammo_pistol_magnum", "ammo_rifle" ], "draw_cost": 20 } | ||
}, | ||
{ | ||
"id": "grenade_pouch", | ||
"copy-from": "grenade_pouch", | ||
"type": "ARMOR", | ||
"name": { "str": "grenade pouch", "str_pl": "grenade pouches" }, | ||
"use_action": { "type": "bandolier", "capacity": 4, "ammo": [ "ammo_grenade" ], "draw_cost": 20 } | ||
}, | ||
{ | ||
"id": "ammo_pouch", | ||
"copy-from": "ammo_pouch", | ||
"type": "ARMOR", | ||
"name": { "str": "ammo pouch", "str_pl": "ammo pouches" }, | ||
"use_action": { | ||
"type": "bandolier", | ||
"capacity": 60, | ||
"ammo": [ | ||
"pebble", | ||
"ammo_black_powder", | ||
"ammo_pistol_tiny", | ||
"ammo_pistol", | ||
"ammo_pistol_magnum", | ||
"ammo_rifle", | ||
"ammo_rifle_huge", | ||
"ammo_shot", | ||
"signal_flare", | ||
"stimpack_ammo", | ||
"ampoule", | ||
"blunderbuss", | ||
"shotcanister", | ||
"paintball" | ||
], | ||
"draw_cost": 35 | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters