diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-15 22:50:08 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-15 22:50:08 -0400 |
commit | 07b3ae994d0e68b5c266f5aa212024d5064847c2 (patch) | |
tree | b3e6b3d2de445f15ece9da67b4e18383c84a2a78 /config | |
parent | b709a392436d4ed17e214cd9e302ddbd23d71c21 (diff) |
scriptable attacks?
Diffstat (limited to 'config')
-rw-r--r-- | config/items.xml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/config/items.xml b/config/items.xml index cac7eb1..574ddda 100644 --- a/config/items.xml +++ b/config/items.xml @@ -19,15 +19,26 @@ <!-- WEAPONS --> <item name="Wood Sword" type="Sword" damage="3" maxStackSize="1" sound="assets/sounds/longSwing.wav" sprite="assets/items/SWORD_WOOD.png" cooldown="250"> <attack range="6, 2" power="1" effect="assets/effects/starAttack.gif"> - update = function() + i = 1 + + effect = function() flash(255, 0, 0) damage(8) end + + hit = function() + if (i < 30) then + xrange = i + i = i + 1 + else + xrange = 0 + end + end </attack> </item> <item name="Hunters Bow" type="Bow" damage="2" maxStackSize="1" sprite="assets/items/bow.png" cooldown="600"> <attack effect="assets/effects/starAttack.gif"> - update = function() + effect = function() flash(255, 0, 255) damage(4) end |