Skip to content

Commit

Permalink
feat(balance): Allow belt clipping of unsheathable unarmed weapons (#…
Browse files Browse the repository at this point in the history
…5150)

Allow clipping of unarmed weapons

Added BELT_CLIP tag to all unarmed weapons that aren't sheathable.
  • Loading branch information
DoubleBullfrog authored Aug 5, 2024
1 parent 280d3a1 commit 89d56e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions data/json/items/melee/unarmed_weapons.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"material": [ "steel" ],
"bashing": 2,
"cutting": 15,
"flags": [ "UNARMED_WEAPON", "DURABLE_MELEE" ],
"flags": [ "UNARMED_WEAPON", "DURABLE_MELEE", "BELT_CLIP" ],
"price": "200 USD",
"price_postapoc": "250 cent",
"qualities": [ [ "CUT", 1 ], [ "BUTCHER", 14 ] ]
Expand Down Expand Up @@ -46,7 +46,7 @@
"weight": "320 g",
"bashing": 9,
"price_postapoc": "250 cent",
"flags": [ "UNARMED_WEAPON", "DURABLE_MELEE" ]
"flags": [ "UNARMED_WEAPON", "DURABLE_MELEE", "BELT_CLIP" ]
},
{
"id": "knuckle_katar",
Expand All @@ -64,7 +64,7 @@
"cutting": 14,
"price_postapoc": "5 USD",
"qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ],
"flags": [ "UNARMED_WEAPON" ],
"flags": [ "UNARMED_WEAPON", "BELT_CLIP" ],
"techniques": [ "WBLOCK_1" ]
},
{
Expand All @@ -82,7 +82,7 @@
"bashing": 3,
"cutting": 4,
"price_postapoc": "50 cent",
"flags": [ "UNARMED_WEAPON" ]
"flags": [ "UNARMED_WEAPON", "BELT_CLIP" ]
},
{
"id": "knuckle_steel",
Expand Down Expand Up @@ -162,7 +162,7 @@
"bashing": 18,
"price": "500 USD",
"qualities": [ [ "HAMMER", 2 ] ],
"flags": [ "UNARMED_WEAPON", "DURABLE_MELEE" ]
"flags": [ "UNARMED_WEAPON", "DURABLE_MELEE", "BELT_CLIP" ]
},
{
"type": "GENERIC",
Expand Down

0 comments on commit 89d56e9

Please sign in to comment.