From 8af281a9b0db373a842e6769016a33633573cd4f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 8 Jan 2025 13:38:29 -0500 Subject: [PATCH] v3.0.0: buffed mimic tooth: - ebony mimics now use regular mimic stats (-20% roughly) - ebony mimic surprise dmg reduced by ~10% --- core/src/main/assets/messages/actors/actors.properties | 2 +- .../shatteredpixeldungeon/actors/mobs/EbonyMimic.java | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/core/src/main/assets/messages/actors/actors.properties b/core/src/main/assets/messages/actors/actors.properties index 0a2adecd2..2a271dcd7 100644 --- a/core/src/main/assets/messages/actors/actors.properties +++ b/core/src/main/assets/messages/actors/actors.properties @@ -1402,7 +1402,7 @@ actors.mobs.ebonymimic.name=ebony mimic actors.mobs.ebonymimic.reveal=There was a mimic there! actors.mobs.ebonymimic.hidden_name=suspicious outline actors.mobs.ebonymimic.hidden_desc=There seems to be something here, but it's almost totally transparent. -actors.mobs.ebonymimic.desc=Mimics are magical creatures which can take any shape they wish. In dungeons they almost always choose a shape of a treasure chest, in order to lure in unsuspecting adventurers.\n\nEbony mimics are extremely tough mimics with the ability to make themselves almost invisible. They lurk on things that adventurers are likely to interact with, but do contain loot of their own as well. +actors.mobs.ebonymimic.desc=Mimics are magical creatures which can take any shape they wish. In dungeons they almost always choose a shape of a treasure chest, in order to lure in unsuspecting adventurers.\n\nEbony mimics are stealthy mimics with the ability to make themselves almost invisible. They lurk on things that adventurers are likely to interact with, but do contain loot of their own as well. They aren't any tougher than a regular mimic once discovered, but their surprise bite is devastating. actors.mobs.elemental$fireelemental.name=fire elemental actors.mobs.elemental$fireelemental.desc=Elementals are chaotic creatures that are often created when powerful occult magic isn't properly controlled. Elementals have minimal intelligence, and are usually associated with a particular type of magic.\n\nFire elementals are a common type of elemental which deals damage with fiery magic. They will set their target ablaze with melee attacks, and can occasionally shoot bolts of fire as well. diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/EbonyMimic.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/EbonyMimic.java index 72bc2e9e4..0e1fd8235 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/EbonyMimic.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/EbonyMimic.java @@ -88,17 +88,12 @@ public class EbonyMimic extends Mimic { @Override public int damageRoll() { if (alignment == Alignment.NEUTRAL){ - return Math.round(super.damageRoll()*1.75f); //BIG damage on surprise + return Math.round(super.damageRoll()*2f); //BIG damage on surprise } else { return super.damageRoll(); } } - @Override - public void setLevel(int level) { - super.setLevel(Math.round(level*1.25f)); - } - @Override protected void generatePrize( boolean useDecks ) { super.generatePrize( useDecks );