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

Heat immune cleanup #76218

Merged
merged 19 commits into from
Sep 7, 2024
Merged
8 changes: 5 additions & 3 deletions data/mods/Magiclysm/effects/effects.json
Original file line number Diff line number Diff line change
Expand Up @@ -1271,11 +1271,13 @@
"type": "effect_type",
"id": "effect_flame_immunity",
"name": [ "Flame Immunity" ],
"desc": [ "You are immune to heat and fire." ],
Maleclypse marked this conversation as resolved.
Show resolved Hide resolved
"desc": [ "You are immune to heat and fire" ],
Maleclypse marked this conversation as resolved.
Show resolved Hide resolved
"rating": "good",
"show_in_info": true,
"removes_effects": [ "onfire", "blisters" ],
"enchantments": [ "ench_heat_and_fire_immunity" ]
"blocks_effects": [ "blisters" ],
"removes_effects": [ "onfire" ],
"enchantments": [ { "values": [ { "value": "ARMOR_HEAT", "multiply": -1 } ] } ],
"flags": [ "HEAT_IMMUME" ]
},
{
"type": "effect_type",
Expand Down
8 changes: 0 additions & 8 deletions data/mods/Magiclysm/enchantments/Cleansing_Flame.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,5 @@
"description": "Your Cleansing Flame abilities grant you good resistance to temperature conditions. You are also immune to infection, as your body cleanses every tainted part of you, constantly.",
"condition": "ALWAYS",
"values": [ { "value": "CLIMATE_CONTROL_HEAT", "add": 30 }, { "value": "CLIMATE_CONTROL_CHILL", "add": 10 } ]
},
{
"type": "enchantment",
"id": "ench_heat_and_fire_immunity",
"name": { "str": "Total Fire Immunity" },
"description": "You are utterly immune to fire and heat.",
"condition": "ALWAYS",
"values": [ { "value": "CLIMATE_CONTROL_CHILL", "add": 1000 }, { "value": "ARMOR_HEAT", "add": -1000 } ]
}
]
4 changes: 2 additions & 2 deletions data/mods/Magiclysm/enchantments/Vulcanist.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"condition": "ALWAYS",
"name": { "str": "Lava" },
"description": "Your Vulcanist abilities grant you good resistance to temperature conditions, total heat immunity, and immunity to smoke.",
"values": [ { "value": "CLIMATE_CONTROL_HEAT", "add": 30 }, { "value": "CLIMATE_CONTROL_CHILL", "add": 10 } ],
"values": [ { "value": "CLIMATE_CONTROL_HEAT", "add": 30 }, { "value": "ARMOR_HEAT", "multiply": -1.0 } ],
"ench_effects": [ { "effect": "effect_vulcanist_no_smoke_or_blisters", "intensity": 1 } ]
},
{
"type": "effect_type",
"id": "effect_vulcanist_no_smoke_or_blisters",
"name": [ "" ],
"desc": [ "" ],
"removes_effects": [ "smoke_eyes", "smoke_lungs", "blisters" ]
"blocks_effects": [ "smoke_eyes", "smoke_lungs", "blisters" ]
}
]
4 changes: 2 additions & 2 deletions data/mods/MindOverMatter/effects/effects_psionic.json
Original file line number Diff line number Diff line change
Expand Up @@ -1365,8 +1365,8 @@
"max_duration": "7 days",
"max_intensity": 95,
"blocks_effects": [ "blisters" ],
"enchantments": [ { "values": [ { "value": "CLIMATE_CONTROL_CHILL", "add": 100000 }, { "value": "ARMOR_HEAT", "multiply": -1.0 } ] } ],
"flags": [ "HEAT_IMMUNE", "HEATSINK" ]
"enchantments": [ { "values": [ { "value": "ARMOR_HEAT", "multiply": -1.0 } ] } ],
"flags": [ "HEAT_IMMUNE" ]
},
{
"type": "effect_type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -585,11 +585,7 @@
"enchantments": [
{
"condition": "ALWAYS",
"values": [
{ "value": "CLIMATE_CONTROL_CHILL", "add": 1000 },
{ "value": "ARMOR_HEAT", "add": -1000 },
{ "value": "ARMOR_COLD", "multiply": 0.5 }
],
"values": [ { "value": "ARMOR_HEAT", "multiply": -1 }, { "value": "ARMOR_COLD", "multiply": 0.5 } ],
"ench_effects": [ { "effect": "effect_hidden_flame_immunity", "intensity": 1 } ]
}
],
Expand Down
Loading