diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-12 08:32:21 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-12 08:32:21 -0400 |
commit | b709a392436d4ed17e214cd9e302ddbd23d71c21 (patch) | |
tree | 9ad8dd18d26ab6aa907b182170c08f26bea10585 /config | |
parent | dbf47c4e8e7731519bec212419f70e08b139be0f (diff) |
more lua scripting
Diffstat (limited to 'config')
-rw-r--r-- | config/items.xml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/config/items.xml b/config/items.xml index 6225062..cac7eb1 100644 --- a/config/items.xml +++ b/config/items.xml @@ -18,10 +18,20 @@ <!-- 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"/> + <attack range="6, 2" power="1" effect="assets/effects/starAttack.gif"> + update = function() + flash(255, 0, 0) + damage(8) + end + </attack> </item> <item name="Hunters Bow" type="Bow" damage="2" maxStackSize="1" sprite="assets/items/bow.png" cooldown="600"> - <attack power="4" effect="assets/effects/starAttack.gif"/> + <attack effect="assets/effects/starAttack.gif"> + update = function() + flash(255, 0, 255) + damage(4) + end + </attack> </item> <item name="Arrow" type="Arrow" damage="1" maxStackSize="99" sprite="assets/items/arrow_crude.png"/> |