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

Fixes Frost Armor spell from Magiclysm mod #39512

Merged
merged 1 commit into from
Apr 13, 2020
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
2 changes: 1 addition & 1 deletion data/mods/Magiclysm/Spells/kelvinist.json
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@
"description": "Covers you in a thin layer of magical ice to protect you from harm.",
"valid_targets": [ "self" ],
"flags": [ "NO_LEGS", "CONCENTRATE", "VERBAL", "SOMATIC" ],
"effect": "target_attack",
"effect": "spawn_item",
"effect_str": "armor_frost",
"affected_body_parts": [ "HEAD", "TORSO", "LEG_L", "LEG_R", "ARM_R", "ARM_L" ],
"energy_source": "MANA",
Expand Down
11 changes: 0 additions & 11 deletions data/mods/Magiclysm/effects/effects.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,6 @@
"rating": "good",
"base_mods": { "per_mod": [ 2 ], "dex_mod": [ 2 ], "str_mod": [ 2, 2 ], "speed_mod": [ 20 ] }
},
{
"type": "effect_type",
"id": "armor_frost",
"name": [ "Frost Armor" ],
"desc": [ "Covers you in a thin layer of magical ice to protect you from harm." ],
"apply_message": "You are protected by Frost Armor.",
"remove_message": "Your Frost Armor melts away.",
"rating": "good",
"show_in_info": true,
"base_mods": { }
},
{
"type": "effect_type",
"id": "bio_boost",
Expand Down
19 changes: 19 additions & 0 deletions data/mods/Magiclysm/items/ethereal_items.json
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,25 @@
"passive_effects": [ { "has": "WORN", "condition": "ALWAYS", "values": [ { "value": "ARMOR_ACID", "multiply": -0.6 } ] } ]
}
},
{
"id": "armor_frost",
"type": "ARMOR",
"category": "armor",
"name": { "str": "frost armor", "str_pl": "frost armor" },
"description": "A thin layer of magical ice, covering the entire body.",
"weight": "5000 g",
"volume": "5 L",
"material": [ "steel" ],
"symbol": "[",
"color": "light_gray",
"covers": [ "HEAD", "MOUTH", "EYES", "TORSO", "ARMS", "HANDS", "LEGS", "FEET" ],
"coverage": 100,
"encumbrance": 10,
"warmth": 0,
"material_thickness": 2,
"environmental_protection": 2,
"flags": [ "ONLY_ONE", "OVERSIZE", "PERSONAL", "STURDY" ]
},
{
"id": "aura_stoneskin",
"type": "ARMOR",
Expand Down