Skip to content

Commit

Permalink
Added, and adjusted fursuits and their protection values and rarity (#…
Browse files Browse the repository at this point in the history
…51499)

* Added, and adjusted fursuits and their armour and rarity

Adds two new suits, the feline and dragon suit. The feline suit just being a wolf suit 2.0, and the dragon suit having wings. Also edits the changes of them spawning so that survivors aren't swamped in fursuits.

* Linted files

Files have been linted

* Fixed some spaces

Fixed the spaces behind periods so they work now, thank you Casswedson btw!

* Update data/json/items/armor/suits_clothes.json

Co-authored-by: actual-nh <[email protected]>

* The actual important part

Github is hard

Co-authored-by: actual-nh <[email protected]>
  • Loading branch information
Holli-Git and actual-nh authored Sep 11, 2021
1 parent 4806642 commit fbd0d6b
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 5 deletions.
10 changes: 7 additions & 3 deletions data/json/itemgroups/Clothing_Gear/clothing.json
Original file line number Diff line number Diff line change
Expand Up @@ -1225,8 +1225,10 @@
[ "duct_tape", 60 ],
[ "firecracker_pack", 5 ],
[ "firecracker", 5 ],
[ "wolfsuit", 4 ],
[ "dinosuit", 4 ],
[ "wolfsuit", 3 ],
[ "dinosuit", 2 ],
[ "felinesuit", 3 ],
[ "dragonsuit", 2 ],
[ "zentai", 5 ],
{ "item": "vibrator", "prob": 5, "charges": [ 0, 100 ] },
{ "item": "condom", "prob": 30, "count": [ 1, 5 ] },
Expand Down Expand Up @@ -3117,7 +3119,9 @@
{ "item": "motorbike_armor", "prob": 15 },
{ "item": "suit", "prob": 70 },
{ "item": "touring_suit", "prob": 20 },
{ "item": "wolfsuit", "prob": 5 },
{ "item": "wolfsuit", "prob": 3 },
{ "item": "felinesuit", "prob": 3 },
{ "item": "dragonsuit", "prob": 1 },
{ "item": "wool_suit", "prob": 40 },
{ "item": "unitard", "prob": 60 },
{ "item": "zentai", "prob": 5 },
Expand Down
57 changes: 55 additions & 2 deletions data/json/items/armor/suits_clothes.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,60 @@
],
"pocket_data": [ { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 } ],
"warmth": 50,
"material_thickness": 5,
"material_thickness": 3,
"environmental_protection": 2,
"flags": [ "OUTER" ]
},
{
"id": "dragonsuit",
"repairs_like": "trenchcoat",
"type": "ARMOR",
"name": { "str": "dragon suit" },
"description": "A cartoonish recreation of a western dragon remade into a suit. Effectively useless nowadays, unless you think the mutants will take you as their own if you wear this. The wings may be a bit too encumbering though.",
"weight": "7033 g",
"volume": "12 L",
"price": 250000,
"price_postapoc": 1000,
"to_hit": -3,
"material": [ "cotton" ],
"symbol": "[",
"looks_like": "dinosuit",
"color": "light_green",
"armor": [
{ "covers": [ "arm_l", "arm_r", "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 26, 30 ] },
{ "covers": [ "mouth", "eyes" ], "coverage": 95, "encumbrance": [ 26, 26 ] },
{ "covers": [ "head" ], "coverage": 100, "encumbrance": [ 26, 26 ] },
{ "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 36, 40 ] }
],
"pocket_data": [ { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 } ],
"warmth": 50,
"material_thickness": 3,
"environmental_protection": 2,
"flags": [ "OUTER" ]
},
{
"id": "felinesuit",
"repairs_like": "trenchcoat",
"type": "ARMOR",
"name": { "str": "feline suit" },
"description": "A furred suit, made to resemble an anthropomorphic feline of indistinguishable breed. Still, a decent source of fur.",
"weight": "7033 g",
"volume": "12 L",
"price": 250000,
"price_postapoc": 1000,
"to_hit": -3,
"material": [ "cotton", "faux_fur" ],
"symbol": "[",
"looks_like": "wolfsuit",
"color": "light_green",
"armor": [
{ "covers": [ "torso", "arm_l", "arm_r", "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 26, 30 ] },
{ "covers": [ "mouth", "eyes" ], "coverage": 95, "encumbrance": [ 26, 26 ] },
{ "covers": [ "head" ], "coverage": 100, "encumbrance": [ 26, 26 ] }
],
"pocket_data": [ { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 } ],
"warmth": 50,
"material_thickness": 2,
"environmental_protection": 2,
"flags": [ "OUTER" ]
},
Expand Down Expand Up @@ -218,7 +271,7 @@
{ "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "2 kg", "moves": 80 }
],
"warmth": 50,
"material_thickness": 7,
"material_thickness": 2,
"environmental_protection": 2,
"flags": [ "OUTER" ]
},
Expand Down

0 comments on commit fbd0d6b

Please sign in to comment.