Skip to content

Commit

Permalink
add some new swords like Kriegsmesser and Falx (#58875)
Browse files Browse the repository at this point in the history
* Balisong Switchblade

I wanted a balisong in the game, and it would be so similar to the switchblade that I made it a variant.  That is all.

* Update swords_and_blades.json

* Update data/json/items/melee/swords_and_blades.json

thank

Co-authored-by: Binrui Dong <[email protected]>

* Couple new swords!

A shortsword, a kriegsmesser, and a falx as craftable weapons.  I tried to make them different enough to be worth adding, but this was mostly just me practicing JSon :)

* Update data/json/items/melee/swords_and_blades.json

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

* Update data/json/items/melee/swords_and_blades.json

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

* Update data/json/items/melee/swords_and_blades.json

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

* Hopefully fixed :D

yaaay

* dying

* fuck

* literally dying

* i

* final tweaks.

* axe the shortsword

the shortsword needs more balancing consideration.  It'll come back in another PR.

* Update swords_and_blades.json

Co-authored-by: Binrui Dong <[email protected]>
Co-authored-by: TheShadowFerret <[email protected]>
Co-authored-by: David Seguin <[email protected]>
  • Loading branch information
4 people authored Jul 24, 2022
1 parent c2b61d6 commit fc73b64
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
44 changes: 44 additions & 0 deletions data/json/items/melee/swords_and_blades.json
Original file line number Diff line number Diff line change
Expand Up @@ -1570,6 +1570,50 @@
"weapon_category": [ "MEDIEVAL_SWORDS", "SHORT_SWORDS" ],
"category": "weapons"
},
{
"id": "kriegsmesser",
"type": "TOOL",
"symbol": "/",
"color": "light_gray",
"name": { "str": "kriegsmesser" },
"description": "A single-edged hand-and-a-half-sword of German design, with a long, curved blade. It became popular across Europe due to it's low cost while maintaining strong cutting power in comparison to the more sophisticated longsword.",
"price": 100000,
"price_postapoc": 4500,
"material": [ "steel" ],
"flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ],
"techniques": [ "WBLOCK_2", "BRUTAL" ],
"weight": "1600 g",
"volume": "2750 ml",
"longest_side": "120 cm",
"bashing": 14,
"cutting": 33,
"to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" },
"category": "weapons",
"qualities": [ [ "CUT", 1 ], [ "BUTCHER", -5 ] ],
"weapon_category": [ "MEDIEVAL_SWORDS", "MEDIUM_SWORDS" ]
},
{
"id": "falx",
"type": "TOOL",
"symbol": "/",
"color": "light_gray",
"name": { "str": "falx", "str_pl": "falxes" },
"description": "A distinct Dacian sword that curves forward, allowing you to bypass shields or hook and pull enemies, while delivering decent chopping damage.",
"price": 100000,
"price_postapoc": 4500,
"material": [ "steel" ],
"flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ],
"techniques": [ "WBLOCK_1", "SWEEP" ],
"weight": "1360 g",
"volume": "2 L",
"longest_side": "90 cm",
"bashing": 5,
"cutting": 25,
"to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" },
"category": "weapons",
"qualities": [ [ "CUT", 1 ], [ "BUTCHER", -15 ] ],
"weapon_category": [ "MEDIEVAL_SWORDS", "MEDIUM_SWORDS" ]
},
{
"type": "GENERIC",
"id": "lajatang",
Expand Down
42 changes: 42 additions & 0 deletions data/json/recipes/weapon/cutting.json
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,48 @@
"tools": [ [ [ "hotcut", -1 ] ] ],
"components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ]
},
{
"type": "recipe",
"activity_level": "BRISK_EXERCISE",
"result": "kriegsmesser",
"category": "CC_WEAPON",
"subcategory": "CSC_WEAPON_CUTTING",
"skill_used": "fabrication",
"difficulty": 6,
"time": "5 h",
"book_learn": [ [ "textbook_weapwest", 5 ] ],
"proficiencies": [
{ "proficiency": "prof_metalworking" },
{ "proficiency": "prof_blacksmithing" },
{ "proficiency": "prof_bladesmith" },
{ "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 }
],
"using": [ [ "blacksmithing_standard", 10 ], [ "steel_standard", 3 ] ],
"qualities": [ { "id": "GRIND", "level": 2 } ],
"tools": [ [ [ "hotcut", -1 ] ] ],
"components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ]
},
{
"type": "recipe",
"activity_level": "BRISK_EXERCISE",
"result": "falx",
"category": "CC_WEAPON",
"subcategory": "CSC_WEAPON_CUTTING",
"skill_used": "fabrication",
"difficulty": 8,
"time": "7 h",
"book_learn": [ [ "textbook_weapwest", 6 ] ],
"proficiencies": [
{ "proficiency": "prof_metalworking" },
{ "proficiency": "prof_blacksmithing" },
{ "proficiency": "prof_bladesmith" },
{ "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 }
],
"using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 4 ] ],
"qualities": [ { "id": "GRIND", "level": 2 } ],
"tools": [ [ [ "hotcut", -1 ] ] ],
"components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ]
},
{
"type": "recipe",
"activity_level": "BRISK_EXERCISE",
Expand Down

0 comments on commit fc73b64

Please sign in to comment.