many monsters have resistanes and immunities to certain elements.
most of them have it notated like this
Code: Select all
resistances = {
fire = "immune",
cold = "immune",
poison = "immune",
shock = "absorb",
physical = "immune"
},
Code: Select all
resistances = {
["poison"] = "immune",
["shock"] = "weak",
},
and then i look at ice lizard and it has
Code: Select all
immunities = { "cold" },
it seems like we need to say resistance cold = "immune"
in all the other monster definitions