increase resists of the droppers

This commit is contained in:
2024-09-04 19:05:19 -05:00
parent 2365b26c1c
commit a4b83ca9a0
+12 -12
View File
@@ -504,18 +504,18 @@ public class Resists {
cold = 75f; cold = 75f;
healing = 0f; healing = 0f;
} else if(Mob.discDroppers.contains(mob) || mob.isDropper) { } else if(Mob.discDroppers.contains(mob) || mob.isDropper) {
slash = 50f; slash = 200f;
crush = 50f; crush = 200f;
pierce = 50f; pierce = 200f;
magic = 50f; magic = 200f;
bleed = 50f; bleed = 200f;
mental = 50f; mental = 200f;
holy = 50f; holy = 200f;
unholy = 50f; unholy = 200f;
poison = 50f; poison = 200f;
lightning = 50f; lightning = 200f;
fire = 50f; fire = 200f;
cold = 50f; cold = 200f;
healing = 0f; healing = 0f;
} }
} }