disc dropper resists

This commit is contained in:
2024-05-17 18:11:37 -05:00
parent a821f7f7e4
commit 8d633adbb3
+12 -13
View File
@@ -57,19 +57,18 @@ public class Resists {
private void setDropperResists() { private void setDropperResists() {
this.immuneToAll = false; this.immuneToAll = false;
this.resists.put(DamageType.Slash, 75f); this.resists.put(DamageType.Slash, 200f);
this.resists.put(DamageType.Crush, 75f); this.resists.put(DamageType.Crush, 200f);
this.resists.put(DamageType.Pierce, 75f); this.resists.put(DamageType.Pierce, 200f);
this.resists.put(DamageType.Magic, 75f); this.resists.put(DamageType.Magic, 200f);
this.resists.put(DamageType.Bleed, 75f); this.resists.put(DamageType.Bleed, 200f);
this.resists.put(DamageType.Poison, 75f); this.resists.put(DamageType.Poison, 200f);
this.resists.put(DamageType.Mental, 75f); this.resists.put(DamageType.Mental, 200f);
this.resists.put(DamageType.Holy, 75f); this.resists.put(DamageType.Holy, 200f);
this.resists.put(DamageType.Unholy, 75f); this.resists.put(DamageType.Unholy, 200f);
this.resists.put(DamageType.Lightning, 75f); this.resists.put(DamageType.Lightning, 200f);
this.resists.put(DamageType.Fire, 75f); this.resists.put(DamageType.Fire, 200f);
this.resists.put(DamageType.Cold, 75f); this.resists.put(DamageType.Cold, 200f);
this.resists.put(DamageType.Healing, 75f);
} }
public Resists(Resists r) { public Resists(Resists r) {