Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(balance): Steel bowstring, repeating crossbow debuff #4242

Merged
merged 4 commits into from
Feb 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions data/json/items/gunmod/mechanism.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@
{
"id": "xbow_string",
"type": "GUNMOD",
"name": { "str": "steel bowstring" },
"description": "A forged steel bowstring designed for crossbows. It allows bolts to hit harder and fly faster, but it's too high-tension to use in a regular bow.",
"name": { "str": "steel prod" },
"description": "A forged steel bowlimb reinforcement designed for crossbows. Its increased draw strength makes the bolts fly farther and faster, but it makes reloading more difficult.",
"looks_like": "string_6",
"weight": "50 g",
"volume": "250 ml",
Expand All @@ -115,7 +115,8 @@
"color": "brown",
"location": "mechanism",
"mod_target_category": [ [ "S_XBOWS" ], [ "M_XBOWS" ] ],
"damage_modifier": [ { "damage_type": "stab", "amount": 15 }, { "damage_type": "bash", "amount": 15 } ],
"range_modifier": 5
"damage_modifier": [ { "damage_type": "stab", "amount": 5 }, { "damage_type": "bash", "amount": 5 } ],
"range_modifier": 5,
"reload_modifier": 15
}
]
4 changes: 2 additions & 2 deletions data/json/items/ranged/crossbows.json
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,8 @@
"price_postapoc": "60 USD",
"bashing": 13,
"to_hit": -1,
"ranged_damage": { "damage_type": "stab", "amount": 45 },
"range": 20,
"ranged_damage": { "damage_type": "stab", "amount": 40 },
"range": 15,
"dispersion": 500,
"recoil": 30,
"durability": 6,
Expand Down
Loading