forked from github/server
Weihnachtsgnom 2006
This commit is contained in:
parent
bf03d8e7c5
commit
56a28511a4
|
@ -866,6 +866,14 @@
|
||||||
<text locale="de">Sonnensegel</text>
|
<text locale="de">Sonnensegel</text>
|
||||||
<text locale="en">solar sails</text>
|
<text locale="en">solar sails</text>
|
||||||
</string>
|
</string>
|
||||||
|
<string name="xmastree">
|
||||||
|
<text locale="de">Weihnachtsbaum</text>
|
||||||
|
<text locale="en">christmas tree</text>
|
||||||
|
</string>
|
||||||
|
<string name="xmastree_p">
|
||||||
|
<text locale="de">Weihnachtsbäume</text>
|
||||||
|
<text locale="en">christmas trees</text>
|
||||||
|
</string>
|
||||||
<string name="stardust">
|
<string name="stardust">
|
||||||
<text locale="de">Sternenstaub</text>
|
<text locale="de">Sternenstaub</text>
|
||||||
<text locale="en">stardust</text>
|
<text locale="en">stardust</text>
|
||||||
|
@ -6739,6 +6747,17 @@
|
||||||
this item, use the CLAIM and SHOW commands).</text>
|
this item, use the CLAIM and SHOW commands).</text>
|
||||||
</string>
|
</string>
|
||||||
|
|
||||||
|
<string name="santa2006">
|
||||||
|
<text locale="de">'Ho ho ho!' Ein dicker Gnom fliegt auf einem von
|
||||||
|
8 Jungdrachen gezogenen Schlitten durch die Nacht und vermacht Deiner
|
||||||
|
Partei einen wundervoll geschmueckten Weihnachtsbaum. (Informationen dazu gibt es mit
|
||||||
|
BEANSPRUCHE und ZEIGE).</text>
|
||||||
|
<text locale="en">'Ho ho ho!' A fat little gnome Gnom on a sled
|
||||||
|
pulled by 8 young dragons flies through the stary night and presents
|
||||||
|
your faction with a beautifully decorated tree. (To get more information about
|
||||||
|
this item, use the CLAIM and SHOW commands).</text>
|
||||||
|
</string>
|
||||||
|
|
||||||
<string name="grail">
|
<string name="grail">
|
||||||
<text locale="de">Gral</text>
|
<text locale="de">Gral</text>
|
||||||
<text locale="en">grail</text>
|
<text locale="en">grail</text>
|
||||||
|
|
|
@ -150,6 +150,10 @@
|
||||||
<text locale="de">Dieses Abzeichen identifiziert die Partei seines Trägers offiziell
|
<text locale="de">Dieses Abzeichen identifiziert die Partei seines Trägers offiziell
|
||||||
als einen Besucher der Botschafterregion 'Muschelplateau'.</text>
|
als einen Besucher der Botschafterregion 'Muschelplateau'.</text>
|
||||||
</string>
|
</string>
|
||||||
|
<string name="xmastree">
|
||||||
|
<text locale="de">Dieser wunderschoen geschmueckte Baum entfaltet in den Wintermonaten eine magsiche Wirkung auf den ganzen Wald.</text>
|
||||||
|
<text locale="en">In the winter months, this beautifully decorated tree has a mgical effect on the entire forest.</text>
|
||||||
|
</string>
|
||||||
<string name="stardust">
|
<string name="stardust">
|
||||||
<text locale="de">Dieser magische Staub ist aus einem im Winter vom Himmel gefallenen
|
<text locale="de">Dieser magische Staub ist aus einem im Winter vom Himmel gefallenen
|
||||||
Stern gewonnen worden, und ihm werden aphrodisiakische Eigenschaften
|
Stern gewonnen worden, und ihm werden aphrodisiakische Eigenschaften
|
||||||
|
|
|
@ -40,6 +40,13 @@
|
||||||
</item>
|
</item>
|
||||||
</resource>
|
</resource>
|
||||||
|
|
||||||
|
<!-- xmas 2006 -->
|
||||||
|
<resource name="xmastree" appearance="vial">
|
||||||
|
<item weight="0">
|
||||||
|
<function name="use" value="lua_useitem"/>
|
||||||
|
</item>
|
||||||
|
</resource>
|
||||||
|
|
||||||
<!-- art rewards -->
|
<!-- art rewards -->
|
||||||
<resource name="trappedairelemental">
|
<resource name="trappedairelemental">
|
||||||
<item weight="0">
|
<item weight="0">
|
||||||
|
|
|
@ -33,6 +33,7 @@ function run_scripts()
|
||||||
"eressea/xmas2004.lua",
|
"eressea/xmas2004.lua",
|
||||||
"eressea/10years.lua",
|
"eressea/10years.lua",
|
||||||
"eressea/xmas2005.lua",
|
"eressea/xmas2005.lua",
|
||||||
|
"eressea/xmas2006.lua",
|
||||||
"eressea/embassy.lua",
|
"eressea/embassy.lua",
|
||||||
"eressea/ents.lua"
|
"eressea/ents.lua"
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
function use_xmastree(u, amount)
|
||||||
|
print("NOT IMPLEMENTED: use_xmastree")
|
||||||
|
-- u:use_pooled("xmastree", amount)
|
||||||
|
return -1
|
||||||
|
end
|
||||||
|
|
||||||
|
function xmas2006()
|
||||||
|
if get_gamename() == "Eressea" then
|
||||||
|
if not get_flag("xm06") then
|
||||||
|
print("Es weihnachtet sehr (2006)")
|
||||||
|
set_flag("xm06", true)
|
||||||
|
for f in factions() do
|
||||||
|
f:add_item("xmastree", 1)
|
||||||
|
f:add_notice("santa2006")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
xmas2006()
|
Loading…
Reference in New Issue