Module:An: Difference between revisions
Jump to navigation
Jump to search
m (Formatting) |
No edit summary |
||
Line 1: | Line 1: | ||
local p = {} --p stands for package | local p = {} --p stands for package | ||
local artifacts = { | |||
["Armor of the Damned"]={["cost"]=12000,["desc"]="All opponents have these spells effective on them for fifty turns: Slow, Curse, Weakness, and Misfortune.<br>Component effects: +3 to Attack and Defense, +2 to Spell Power and Knowledge."}, | |||
["Horn of the Abyss"]={["cost"]=50000,["desc"]="After a stack of living creatures is slain, a stack of Fangarms will rise in their stead and will stay loyal to the hero after the battle concludes."}, | |||
} | |||
function p.hover( frame ) | function p.hover( frame ) | ||
if frame.args[1] | if not artifacts[frame.args[1]] then | ||
return "" | |||
end | end | ||
return artifacts[frame.args[1]]["desc"] | |||
end | end | ||
return p | return p |
Latest revision as of 04:19, 25 September 2024
local p = {} --p stands for package
local artifacts = {
["Armor of the Damned"]={["cost"]=12000,["desc"]="All opponents have these spells effective on them for fifty turns: Slow, Curse, Weakness, and Misfortune.<br>Component effects: +3 to Attack and Defense, +2 to Spell Power and Knowledge."},
["Horn of the Abyss"]={["cost"]=50000,["desc"]="After a stack of living creatures is slain, a stack of Fangarms will rise in their stead and will stay loyal to the hero after the battle concludes."},
}
function p.hover( frame )
if not artifacts[frame.args[1]] then
return ""
end
return artifacts[frame.args[1]]["desc"]
end
return p