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

Kneepads - update XL greaves and kneepads to allow tails, fix Magicalysm tail mutations to work with "ALLOWS_TAIL" tag #53355

Merged
merged 2 commits into from
Dec 12, 2021
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
6 changes: 3 additions & 3 deletions data/json/items/armor/legs_armor.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
"color": "dark_gray",
"warmth": 10,
"material_thickness": 3,
"flags": [ "OUTER" ],
"flags": [ "OUTER", "ALLOWS_TAIL" ],
"armor": [ { "encumbrance": 3, "coverage": 65, "covers": [ "leg_l", "leg_r" ] } ]
},
{
Expand Down Expand Up @@ -426,7 +426,7 @@
"name": { "str": "pair of XL iron greaves", "str_pl": "pairs of XL iron greaves" },
"description": "A pair of extra large iron leg guards with a simple leather lining.",
"proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 },
"flags": [ "OUTER", "WATER_FRIENDLY", "OVERSIZE" ]
"flags": [ "OUTER", "WATER_FRIENDLY", "OVERSIZE", "ALLOWS_TAIL" ]
},
{
"id": "legguard_metal_sheets",
Expand Down Expand Up @@ -466,7 +466,7 @@
"name": { "str": "pair of XL metal leg guards", "str_pl": "pairs of XL metal leg guards" },
"description": "A pair of extra large hammered metal plates tied to your legs.",
"proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 },
"flags": [ "OUTER", "WATER_FRIENDLY", "OVERSIZE" ]
"flags": [ "OUTER", "WATER_FRIENDLY", "OVERSIZE", "ALLOWS_TAIL" ]
},
{
"id": "legguard_paper",
Expand Down
2 changes: 2 additions & 0 deletions data/mods/Magiclysm/mutations/mutations.json
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,7 @@
"prereqs2": [ "SCALES", "DRAGON_SCALES_BLACK" ],
"changes_to": [ "DRAGON_TAIL" ],
"restricts_gear": [ "leg_l", "leg_r" ],
"allowed_items": [ "ALLOWS_TAIL" ],
"allow_soft_gear": true,
"attacks": {
"attack_text_u": "You whap %s with your tail",
Expand All @@ -576,6 +577,7 @@
"prereqs": [ "DRAGON_TAIL_SCALED" ],
"category": [ "DRAGON_BLACK" ],
"restricts_gear": [ "leg_l", "leg_r" ],
"allowed_items": [ "ALLOWS_TAIL" ],
"allow_soft_gear": true,
"attacks": {
"attack_text_u": "You smash %s with your tail",
Expand Down