From 8d633adbb3e7a0f20042278b8a8c56a248cbb4c2 Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Fri, 17 May 2024 18:11:37 -0500 Subject: [PATCH] disc dropper resists --- src/engine/objects/Resists.java | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/src/engine/objects/Resists.java b/src/engine/objects/Resists.java index c4f12dec..3913d10f 100644 --- a/src/engine/objects/Resists.java +++ b/src/engine/objects/Resists.java @@ -57,19 +57,18 @@ public class Resists { private void setDropperResists() { this.immuneToAll = false; - this.resists.put(DamageType.Slash, 75f); - this.resists.put(DamageType.Crush, 75f); - this.resists.put(DamageType.Pierce, 75f); - this.resists.put(DamageType.Magic, 75f); - this.resists.put(DamageType.Bleed, 75f); - this.resists.put(DamageType.Poison, 75f); - this.resists.put(DamageType.Mental, 75f); - this.resists.put(DamageType.Holy, 75f); - this.resists.put(DamageType.Unholy, 75f); - this.resists.put(DamageType.Lightning, 75f); - this.resists.put(DamageType.Fire, 75f); - this.resists.put(DamageType.Cold, 75f); - this.resists.put(DamageType.Healing, 75f); + this.resists.put(DamageType.Slash, 200f); + this.resists.put(DamageType.Crush, 200f); + this.resists.put(DamageType.Pierce, 200f); + this.resists.put(DamageType.Magic, 200f); + this.resists.put(DamageType.Bleed, 200f); + this.resists.put(DamageType.Poison, 200f); + this.resists.put(DamageType.Mental, 200f); + this.resists.put(DamageType.Holy, 200f); + this.resists.put(DamageType.Unholy, 200f); + this.resists.put(DamageType.Lightning, 200f); + this.resists.put(DamageType.Fire, 200f); + this.resists.put(DamageType.Cold, 200f); } public Resists(Resists r) {