From 74c9f4188034a7621486ddc73286e009336ddf69 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 17 Jan 2020 23:15:07 -0500 Subject: [PATCH] v0.8.0: tweaked new DM abilities to interrupt the hero --- .../shatteredpixeldungeon/actors/mobs/NewDM300.java | 2 ++ .../shatteredpixeldungeon/messages/actors/actors.properties | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/NewDM300.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/NewDM300.java index a7181abeb..781ba625c 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/NewDM300.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/NewDM300.java @@ -315,6 +315,7 @@ public class NewDM300 extends Mob { } public void ventGas( Char target ){ + Dungeon.hero.interrupt(); int gasVented = 0; @@ -344,6 +345,7 @@ public class NewDM300 extends Mob { public void dropRocks( Char target ) { + Dungeon.hero.interrupt(); int rockCenter = target.pos; if (Dungeon.level.adjacent(pos, target.pos)){ diff --git a/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/actors/actors.properties b/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/actors/actors.properties index 05cd9b3bd..0e276e715 100644 --- a/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/actors/actors.properties +++ b/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/actors/actors.properties @@ -500,7 +500,7 @@ actors.mobs.olddm300.desc=This machine was created by the Dwarves several centur actors.mobs.newdm300.name=DM-300 actors.mobs.newdm300.notice=UNAUTHORIZED PERSONNEL DETECTED! actors.mobs.newdm300.shield=DM-300 pulls power from the exposed wires and shields itself! -actors.mobs.newdm300.vent=DM-300 fires a jet of toxic exhaust at you! +actors.mobs.newdm300.vent=DM-300 fires a jet of toxic exhaust! actors.mobs.newdm300.rocks=DM-300 slams the ground, loosening rocks from the ceiling! actors.mobs.newdm300.charging=SUSTAINING DAMAGE! CHARGING FROM POWER GRID... actors.mobs.newdm300.supercharged=SUPERCHARGE COMPLETE, OPERATING AT 200% POWER!