forked from github/server
- Dritter Besucherpreis
This commit is contained in:
parent
503b547a9c
commit
ea83b1f2fa
|
@ -69,6 +69,14 @@ function give_visitor2()
|
||||||
visitor2.region:add_notice(s)
|
visitor2.region:add_notice(s)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function give_visitor3()
|
||||||
|
visitor3 = get_unit(atoi36("visg"))
|
||||||
|
-- Windgeist
|
||||||
|
visitor3:add_item("trappedairelemental", 1)
|
||||||
|
s = "von Bote des Rats von Andune (bote): Glückwunsch zum Gewinn eines Besucherpreises im Wettstreit der Künste, " .. visitor3.name .. "."
|
||||||
|
visitor3.region:add_notice(s)
|
||||||
|
end
|
||||||
|
|
||||||
function give_rewards()
|
function give_rewards()
|
||||||
print("- giving out rewards of the art contest")
|
print("- giving out rewards of the art contest")
|
||||||
give_winner1()
|
give_winner1()
|
||||||
|
@ -77,6 +85,7 @@ function give_rewards()
|
||||||
give_loser()
|
give_loser()
|
||||||
give_visitor1()
|
give_visitor1()
|
||||||
give_visitor2()
|
give_visitor2()
|
||||||
|
give_visitor3()
|
||||||
end
|
end
|
||||||
|
|
||||||
give_rewards()
|
give_rewards()
|
||||||
|
|
Loading…
Reference in New Issue