summaryrefslogtreecommitdiff
path: root/example/scripts/special_actions.lua
diff options
context:
space:
mode:
Diffstat (limited to 'example/scripts/special_actions.lua')
-rw-r--r--example/scripts/special_actions.lua49
1 files changed, 21 insertions, 28 deletions
diff --git a/example/scripts/special_actions.lua b/example/scripts/special_actions.lua
index 135ad351..7cd19b51 100644
--- a/example/scripts/special_actions.lua
+++ b/example/scripts/special_actions.lua
@@ -1,19 +1,12 @@
--------------------------------------------------------------
--- Special action script file --
--- --
--- This file allows you to implement your special --
--- action system. The system can for example implement --
--- magic, physical attack or also such mundane things --
--- as showing emoticons over the characters heads. --
-----------------------------------------------------------------------------------
--- Copyright 2010 Manasource Development Team --
--- --
--- This file is part of Manasource. --
--- --
--- Manasource 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. --
-----------------------------------------------------------------------------------
+--[[
+
+ Special action script file
+
+ This file allows you to implement your special action system. The system can
+ for example implement magic, physical attack or also such mundane things as
+ showing emoticons over the characters heads.
+
+--]]
local specialCost = {}
specialCost[1] = 50
@@ -21,19 +14,19 @@ specialCost[2] = 250
specialCost[3] = 1000
function use_special(ch, id)
- -- perform whatever the special with the ID does
- if id == 1 then
- mana.being_say(ch, "Kaaame...Haaame... HAAAAAA!")
- end
- if id == 2 then
- mana.being_say(ch, "HAA-DOKEN!")
- end
- if id == 3 then
- mana.being_say(ch, "Sonic BOOM")
- end
+ -- perform whatever the special with the ID does
+ if id == 1 then
+ mana.being_say(ch, "Kaaame...Haaame... HAAAAAA!")
+ end
+ if id == 2 then
+ mana.being_say(ch, "HAA-DOKEN!")
+ end
+ if id == 3 then
+ mana.being_say(ch, "Sonic BOOM")
+ end
end
function get_special_recharge_cost(id)
- -- return the recharge cost for the special with the ID
- return specialCost[id]
+ -- return the recharge cost for the special with the ID
+ return specialCost[id]
end