summaryrefslogtreecommitdiff
path: root/Scenes/PlateDamage.gd
diff options
context:
space:
mode:
authorHenrique Alves <henriquelalves@gmail.com>2022-07-17 04:24:18 -0300
committerHenrique Alves <henriquelalves@gmail.com>2022-07-17 04:24:18 -0300
commitf700ffa0e7f6b025b89e02188b1820dc817eaf18 (patch)
treec3fcd6f06dd167f59b51ab5b78259a4e5738347f /Scenes/PlateDamage.gd
parent5b55438f5805d18bba0b5b773e3af3a2fd3858ea (diff)
parent795ffde4e100b83175cdb386481fb770c82c8b77 (diff)
downloadgamejam-gmtk-2022-f700ffa0e7f6b025b89e02188b1820dc817eaf18.tar.gz
gamejam-gmtk-2022-f700ffa0e7f6b025b89e02188b1820dc817eaf18.tar.bz2
gamejam-gmtk-2022-f700ffa0e7f6b025b89e02188b1820dc817eaf18.zip
Merge remote-tracking branch 'origin/main'
Diffstat (limited to 'Scenes/PlateDamage.gd')
-rw-r--r--Scenes/PlateDamage.gd8
1 files changed, 3 insertions, 5 deletions
diff --git a/Scenes/PlateDamage.gd b/Scenes/PlateDamage.gd
index 310ac39..d910f76 100644
--- a/Scenes/PlateDamage.gd
+++ b/Scenes/PlateDamage.gd
@@ -1,19 +1,17 @@
extends Plate
-export(int) var damage
-
func activate(entity : Entity, dungeon):
if entity is Player:
entity.add_action("cor_shake", [0.2])
- Global.turns -= damage
+ Global.turns -= int(entity.get_top())
return
if entity is Monster:
- if entity.health - damage <= 0:
+ if entity.health - 1 <= 0:
entity.alive = false
entity.add_action("cor_dies", [])
dungeon.kill_entity(entity)
else:
- entity.health -= damage
+ entity.health -= 1
entity.add_action("cor_shake", [0.2])
return