diff options
Diffstat (limited to 'example/scripts/items')
-rw-r--r-- | example/scripts/items/candy.lua | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/example/scripts/items/candy.lua b/example/scripts/items/candy.lua index 5ab7c9a4..a9c59fe4 100644 --- a/example/scripts/items/candy.lua +++ b/example/scripts/items/candy.lua @@ -1,17 +1,13 @@ -------------------------------------------------------------- --- Example use script. Makes the player character say -- --- "*munch*munch*munch*" when using this item. -- --- The HP regeneration effect is handled separately based -- --- on the heal value in items.xml -- ----------------------------------------------------------------------------------- --- Copyright 2009 The Mana World Development Team -- --- -- --- This file is part of The Mana World. -- --- -- --- The Mana World is free software; you can redistribute it and/or modify it -- --- under the terms of the GNU General Public License as published by the Free -- --- Software Foundation; either version 2 of the License, or any later version. -- ----------------------------------------------------------------------------------- +--[[ + + Example item script. + + Makes the player character say "*munch*munch*munch*" when using this item. + The HP regeneration effect is handled separately based on the heal value in + items.xml. + +--]] + function use_candy(user) - mana.being_say(user, "*munch*munch*munch*") + mana.being_say(user, "*munch*munch*munch*") end |