- Dritter Besucherpreis

This commit is contained in:
Christian Schlittchen 2004-05-21 15:38:41 +00:00
parent 503b547a9c
commit ea83b1f2fa
1 changed files with 9 additions and 0 deletions

View File

@ -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()