Addition of Magic Lamp system.
Contributed by manax182.
This commit is contained in:
12
L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/MagicLampData.xml
vendored
Normal file
12
L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/MagicLampData.xml
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/MagicLampData.xsd" >
|
||||
<greater_lamp_mode item="91641" count="5" />
|
||||
<lamp mode="NORMAL" type="RED" exp="100000000" sp="2700000" chance="20" />
|
||||
<lamp mode="NORMAL" type="PURPLE" exp="30000000" sp="810000" chance="35" />
|
||||
<lamp mode="NORMAL" type="BLUE" exp="10000000" sp="270000" chance="60" />
|
||||
<lamp mode="NORMAL" type="GREEN" exp="5000000" sp="135000" chance="100" />
|
||||
<lamp mode="GREATER" type="RED" exp="1200000000" sp="32400000" chance="20" />
|
||||
<lamp mode="GREATER" type="PURPLE" exp="360000000" sp="9720000" chance="35" />
|
||||
<lamp mode="GREATER" type="BLUE" exp="120000000" sp="3240000" chance="60" />
|
||||
<lamp mode="GREATER" type="GREEN" exp="60000000" sp="1620000" chance="100" />
|
||||
</list>
|
||||
24
L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/xsd/MagicLampData.xsd
vendored
Normal file
24
L2J_Mobius_Essence_4.0_DwellingOfSpirits/dist/game/data/xsd/MagicLampData.xsd
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="list">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element maxOccurs="unbounded" name="greater_lamp_mode">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="item" type="xs:unsignedInt" use="required" />
|
||||
<xs:attribute name="count" type="xs:unsignedInt" use="required" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element maxOccurs="unbounded" name="lamp">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="mode" type="xs:string" use="required" />
|
||||
<xs:attribute name="type" type="xs:string" use="required" />
|
||||
<xs:attribute name="exp" type="xs:unsignedInt" use="required" />
|
||||
<xs:attribute name="sp" type="xs:unsignedInt" use="required" />
|
||||
<xs:attribute name="chance" type="xs:decimal" use="required" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
||||
Reference in New Issue
Block a user