aboutsummaryrefslogtreecommitdiffstats
path: root/xml/entities.xml
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-10-17 18:21:38 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-10-17 18:21:38 -0400
commit03246da32a8452e6a76ccf2f7f97cda4472d1d29 (patch)
treefe69406b677e574365d14099e3d1cd69bde586ed /xml/entities.xml
parent2bd1eaef1b9ec848933a40049ec8866e2b83a47d (diff)
skirl hostility
Diffstat (limited to 'xml/entities.xml')
-rw-r--r--xml/entities.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/xml/entities.xml b/xml/entities.xml
index 67f4fc2..16bee0f 100644
--- a/xml/entities.xml
+++ b/xml/entities.xml
@@ -80,6 +80,10 @@
countdown = 0
update = function()
+ if (velx &lt; 0 and math.abs(selfx - playerx) &lt; 150) then
+ aggro = 1
+ end
+
if (countdown == 0) then
countdown = math.random(3000, 5000)
velx = math.random(-1, 1) * 0.005
@@ -88,7 +92,15 @@
end
hostile = function()
+ if (playerx &lt;= selfx) then
+ velx = -0.01
+ else
+ velx = 0.01
+ end
+ if (math.abs(playerx - selfx) &lt; 50) then
+ attack(selfx, selfy)
+ end
end
</Wander>
<Aggro/>
@@ -110,6 +122,7 @@
<Solid />
<Physics />
<Name value="birb" />
+ <Health value="60" />
<Wander>
countdown = 0
onetime = 0