aboutsummaryrefslogtreecommitdiffstats
path: root/xml/entities.xml
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-10-17 22:21:52 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-10-17 22:21:52 -0400
commitd79f4a7f4b5aff5931ef86edd2537ef5e3620fd4 (patch)
tree2ad2d8a9ed9ffee36474fb111f4654511f0717b4 /xml/entities.xml
parent03246da32a8452e6a76ccf2f7f97cda4472d1d29 (diff)
arrow rotation... kinda
Diffstat (limited to 'xml/entities.xml')
-rw-r--r--xml/entities.xml37
1 files changed, 24 insertions, 13 deletions
diff --git a/xml/entities.xml b/xml/entities.xml
index 16bee0f..921e837 100644
--- a/xml/entities.xml
+++ b/xml/entities.xml
@@ -1,5 +1,29 @@
<spawnx/>
+<firefly>
+ <Position />
+ <Visible value="0.1" />
+ <Sprite>
+ <frame>
+ <src limb="0" offset="0,5" size="1,1" drawOffset="0,0">assets/colorIndex.png</src>
+ </frame>
+ </Sprite>
+ <Direction />
+ <Solid />
+ <Wander>
+ countdown = 0
+
+ update = function()
+ if (countdown == 0) then
+ countdown = math.random(100, 500)
+ velx = math.random(-5, 5) * 0.001
+ vely = math.random(-5, 5) * 0.001
+ end
+ countdown = countdown - 1
+ end
+ </Wander>
+</firefly>
+
<npc>
<Position value="0.0,100.0" />
<Visible value="0.2" />
@@ -80,10 +104,6 @@
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
@@ -92,15 +112,7 @@
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/>
@@ -122,7 +134,6 @@
<Solid />
<Physics />
<Name value="birb" />
- <Health value="60" />
<Wander>
countdown = 0
onetime = 0