server/src/scripts/eressea/xmas2005.lua

32 lines
729 B
Lua
Raw Normal View History

2005-12-25 20:13:51 +01:00
function usepotion_message(u, type)
msg = message("usepotion")
msg:set_unit("unit", u)
msg:set_resource("potion", type)
return msg
end
function use_stardust(u, amount)
local p = u.region:get_resource("peasant")
p = math.ceil(1.5 * p)
u.region:set_resource("peasant", p)
local msg = usepotion_message(u, "stardust")
msg:send_region(u.region)
end
2005-12-18 19:09:53 +01:00
function xmas2005()
print(get_gamename())
if get_gamename() == "Eressea" then
if not get_flag("xm05") then
print("Es weihnachtet sehr")
set_flag("xm05", true)
for f in factions() do
f:add_item("stardust", 1)
f:add_notice("santa2005")
end
end
end
end
print("Ja, ist denn schon wieder Weihnachten?")
xmas2005()