Skip to content

Commit

Permalink
feat(content): made some bionics better (#3660)
Browse files Browse the repository at this point in the history
* Made some bionics better

Gave the bionic shotgun 8 ammo capacity, made it reload its full ammo capacity at once with a corresponding reload time, and gave it a four-shot full-auto burst. Also made the bionc shotgun, micro reactor, advanced micro reactor, and gasoline fuel cell CBMs no longer have encumbrance.

* Update data/json/items/gun/bio.json

Co-authored-by: Chaosvolt <[email protected]>

* Yeet RELOAD_ONE

---------

Co-authored-by: Chaosvolt <[email protected]>
  • Loading branch information
yay855 and chaosvolt authored Nov 13, 2023
1 parent fed1a4f commit f9d7b2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions data/json/bionics.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@
"name": { "str": "Shotgun Arm" },
"description": "Concealed in your left arm is a 12 gauge shotgun. Activate the bionic to fire and reload the shotgun.",
"occupied_bodyparts": [ [ "arm_l", 15 ] ],
"encumbrance": [ [ "arm_l", 5 ] ],
"act_cost": "50 J",
"fake_item": "bio_shotgun_gun",
"flags": [ "BIONIC_TOGGLED", "BIONIC_WEAPON", "BIONIC_NPC_USABLE" ]
Expand Down Expand Up @@ -1135,7 +1134,6 @@
"name": { "str": "Gasoline Fuel Cell CBM" },
"description": "A small gasoline fuel cell fixed to your scapula. Despite its limited energy output compared to other fuel cells, this device still produces a significant amount of heat dissipated through a heat exhaust protruding from your back. A diffuse network of bio-plastic bladders has been meshed with your circulatory system and serves as a fuel tank.",
"occupied_bodyparts": [ [ "torso", 8 ] ],
"encumbrance": [ [ "torso", 5 ] ],
"fuel_options": [ "gasoline" ],
"fuel_capacity": 500,
"fuel_efficiency": 0.25,
Expand All @@ -1149,7 +1147,6 @@
"name": { "str": "Micro Reactor" },
"description": "This stripped down mini-reactor generates impressive amounts of bionic power but slowly irradiates the user. 1 plutonium fuel cell provides 1000 charges producing 10kJ of power a turn, while not active & fueled provides a constant 50J of power.",
"occupied_bodyparts": [ [ "torso", 55 ] ],
"encumbrance": [ [ "torso", 5 ] ],
"fuel_options": [ "plut_cell" ],
"fuel_capacity": 10000,
"fuel_efficiency": 1,
Expand All @@ -1165,7 +1162,6 @@
"name": { "str": "Advanced Micro Reactor" },
"description": "This stripped down mini-reactor has been heavily modified and is more efficient and safer than the base model. 1 plutonium fuel cell provides 1500 charges producing 10kJ of power a turn, while not active & fueled provides a constant 75J of power.",
"occupied_bodyparts": [ [ "torso", 55 ] ],
"encumbrance": [ [ "torso", 5 ] ],
"fuel_options": [ "plut_cell" ],
"fuel_capacity": 12000,
"fuel_efficiency": 1,
Expand Down
6 changes: 3 additions & 3 deletions data/json/items/gun/bio.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"ranged_damage": { "damage_type": "bullet", "amount": 2 },
"dispersion": 500,
"durability": 6,
"clip_size": 4,
"modes": [ [ "DEFAULT", "single shot", 1 ], [ "burst", "double", 2 ] ],
"clip_size": 8,
"modes": [ [ "DEFAULT", "single shot", 1 ], [ "burst", "double", 2 ], [ "AUTO", "auto", 4 ] ],
"reload": 200,
"flags": [ "NEVER_JAMS", "NO_DROP", "RELOAD_EJECT", "NO_UNWIELD", "TRADER_AVOID", "RELOAD_ONE" ]
"flags": [ "NEVER_JAMS", "NO_DROP", "RELOAD_EJECT", "NO_UNWIELD", "TRADER_AVOID" ]
},
{
"id": "bio_emp_gun",
Expand Down

0 comments on commit f9d7b2b

Please sign in to comment.