forked from github/server
- Schreibfehler Talentname (Waffenbau)
This commit is contained in:
parent
614da4d857
commit
983d17745d
|
@ -153,6 +153,7 @@ xml_readconstruction(xmlXPathContextPtr xpath, xmlNodePtr * nodeTab, int nodeNr,
|
||||||
property = xmlGetProp(node, BAD_CAST "skill");
|
property = xmlGetProp(node, BAD_CAST "skill");
|
||||||
assert(property!=NULL);
|
assert(property!=NULL);
|
||||||
con->skill = sk_find((const char*)property);
|
con->skill = sk_find((const char*)property);
|
||||||
|
assert(con->skill!=NOSKILL);
|
||||||
xmlFree(property);
|
xmlFree(property);
|
||||||
|
|
||||||
con->maxsize = xml_ivalue(node, "maxsize", -1);
|
con->maxsize = xml_ivalue(node, "maxsize", -1);
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<resource name="greatbow">
|
<resource name="greatbow">
|
||||||
<function name="change" value="changeitem"/>
|
<function name="change" value="changeitem"/>
|
||||||
<item weight="100">
|
<item weight="100">
|
||||||
<construction skill="sk_weaponsmith" minskill="5" reqsize="1">
|
<construction skill="sk_weaponsmithing" minskill="5" reqsize="1">
|
||||||
<modifier function="mod_elves_only"/>
|
<modifier function="mod_elves_only"/>
|
||||||
<requirement type="mallorn" quantity="1"/>
|
<requirement type="mallorn" quantity="1"/>
|
||||||
</construction>
|
</construction>
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
<resource name="mallornbow">
|
<resource name="mallornbow">
|
||||||
<item weight="100">
|
<item weight="100">
|
||||||
<construction skill="sk_weaponsmith" minskill="5" reqsize="1">
|
<construction skill="sk_weaponsmithing" minskill="5" reqsize="1">
|
||||||
<requirement type="mallorn" quantity="1"/>
|
<requirement type="mallorn" quantity="1"/>
|
||||||
</construction>
|
</construction>
|
||||||
<weapon pierce="true" missile="true" skill="sk_bow" offmod="0" defmod="0" reload="0" magres="0.15">
|
<weapon pierce="true" missile="true" skill="sk_bow" offmod="0" defmod="0" reload="0" magres="0.15">
|
||||||
|
@ -62,7 +62,7 @@
|
||||||
|
|
||||||
<resource name="mallorncrossbow">
|
<resource name="mallorncrossbow">
|
||||||
<item weight="100">
|
<item weight="100">
|
||||||
<construction skill="sk_weaponsmith" minskill="5" reqsize="1">
|
<construction skill="sk_weaponsmithing" minskill="5" reqsize="1">
|
||||||
<requirement type="mallorn" quantity="1"/>
|
<requirement type="mallorn" quantity="1"/>
|
||||||
</construction>
|
</construction>
|
||||||
<weapon pierce="true" missile="true" skill="sk_bow" offmod="0" defmod="0" reload="0" magres="0.15">
|
<weapon pierce="true" missile="true" skill="sk_bow" offmod="0" defmod="0" reload="0" magres="0.15">
|
||||||
|
@ -75,7 +75,7 @@
|
||||||
|
|
||||||
<resource name="mallornspear">
|
<resource name="mallornspear">
|
||||||
<item weight="100">
|
<item weight="100">
|
||||||
<construction skill="sk_weaponsmith" minskill="5" reqsize="1">
|
<construction skill="sk_weaponsmithing" minskill="5" reqsize="1">
|
||||||
<requirement type="mallorn" quantity="1"/>
|
<requirement type="mallorn" quantity="1"/>
|
||||||
</construction>
|
</construction>
|
||||||
<weapon pierce="true" skill="sk_polearm" minskill="5" offmod="0" defmod="0" magres="0.15">
|
<weapon pierce="true" skill="sk_polearm" minskill="5" offmod="0" defmod="0" magres="0.15">
|
||||||
|
@ -87,7 +87,7 @@
|
||||||
|
|
||||||
<resource name="mallornlance">
|
<resource name="mallornlance">
|
||||||
<item weight="100">
|
<item weight="100">
|
||||||
<construction skill="sk_weaponsmith" minskill="5" reqsize="1">
|
<construction skill="sk_weaponsmithing" minskill="5" reqsize="1">
|
||||||
<requirement type="mallorn" quantity="2"/>
|
<requirement type="mallorn" quantity="2"/>
|
||||||
</construction>
|
</construction>
|
||||||
<weapon pierce="true" skill="sk_polearm" minskill="5" offmod="0" defmod="0" magres="0.15">
|
<weapon pierce="true" skill="sk_polearm" minskill="5" offmod="0" defmod="0" magres="0.15">
|
||||||
|
@ -99,7 +99,7 @@
|
||||||
|
|
||||||
<resource name="halberd">
|
<resource name="halberd">
|
||||||
<item weight="200">
|
<item weight="200">
|
||||||
<construction skill="sk_weaponsmith" minskill="3" reqsize="1">
|
<construction skill="sk_weaponsmithing" minskill="3" reqsize="1">
|
||||||
<requirement type="wood" quantity="1"/>
|
<requirement type="wood" quantity="1"/>
|
||||||
<requirement type="iron" quantity="1"/>
|
<requirement type="iron" quantity="1"/>
|
||||||
</construction>
|
</construction>
|
||||||
|
|
Loading…
Reference in New Issue