diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-16 18:43:06 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-16 18:43:06 -0400 |
commit | 2bd1eaef1b9ec848933a40049ec8866e2b83a47d (patch) | |
tree | 714a018bdc4b42aa1e9bcac5270190d068cf177b /xml | |
parent | 07b3ae994d0e68b5c266f5aa212024d5064847c2 (diff) |
do not touch birb
Diffstat (limited to 'xml')
-rw-r--r-- | xml/!town.xml | 2 | ||||
-rw-r--r-- | xml/entities.xml | 49 |
2 files changed, 48 insertions, 3 deletions
diff --git a/xml/!town.xml b/xml/!town.xml index 5c66a25..30adc94 100644 --- a/xml/!town.xml +++ b/xml/!town.xml @@ -22,7 +22,7 @@ <structure type="1" position="300.0,100.0"/> <structure inside="bobshouse.xml" type="1" position="10.0,100.0"/> <skirl /> - <birb /> + <birb position="-300.0,100.0" /> </World> <Dialog name="Bob"> diff --git a/xml/entities.xml b/xml/entities.xml index fda45b4..67f4fc2 100644 --- a/xml/entities.xml +++ b/xml/entities.xml @@ -86,9 +86,13 @@ end countdown = countdown - 1 end + + hostile = function() + + end </Wander> - <!--<Aggro arena="arena.xml" /> - <Trigger />--> + <Aggro/> + <!--<Trigger />--> <Drop> <item name="Arrow" min="3" max="5" /> </Drop> @@ -108,8 +112,18 @@ <Name value="birb" /> <Wander> countdown = 0 + onetime = 0 update = function() + if (onetime == 0) then + onetime = 1 + selfy = playery + 300 + end + + if (math.abs(selfx - playerx) <= 150) then + aggro = 1 + end + if (countdown == 0) then countdown = math.random(3000, 5000) if (velx >= 0) then @@ -123,7 +137,38 @@ end countdown = countdown - 1 end + + dipping = 0 + oldy = 0 + + hostile = function() + if (dipping == 1) then + if (selfy >= oldy) then + dipping = 0 + aggro = 0 + vely = 0 + onetime = 0 + else + vely = vely + 0.0006 + if (math.abs(vely) < 0.01) then + attack(selfx, selfy) + end + end + else + if (selfy - playery > 200) then + if (playerx >= selfx) then + velx = 0.01 + else + velx = -0.01 + end + dipping = 1 + oldy = selfy + vely = -.2 + end + end + end </Wander> + <Aggro/> </birb> <structure> |