Addition of item Express Bus Pass Card (47384).
Contributed by Liamxroy.
This commit is contained in:
@@ -28,11 +28,11 @@ import com.l2jmobius.gameserver.model.skills.Skill;
|
|||||||
*/
|
*/
|
||||||
public final class GiveXp extends AbstractEffect
|
public final class GiveXp extends AbstractEffect
|
||||||
{
|
{
|
||||||
private final int _xp;
|
private final long _xp;
|
||||||
|
|
||||||
public GiveXp(StatsSet params)
|
public GiveXp(StatsSet params)
|
||||||
{
|
{
|
||||||
_xp = params.getInt("xp", 0);
|
_xp = params.getLong("xp", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -1180,11 +1180,18 @@
|
|||||||
<!-- A bus card that can be used to get on the Express Bus. Use to acquire 100,000,000,000 EXP and 240,000,000 SP. Characters with Lv. 99 or higher only. -->
|
<!-- A bus card that can be used to get on the Express Bus. Use to acquire 100,000,000,000 EXP and 240,000,000 SP. Characters with Lv. 99 or higher only. -->
|
||||||
<set name="icon" val="icon.card_hidden" />
|
<set name="icon" val="icon.card_hidden" />
|
||||||
<set name="default_action" val="SKILL_REDUCE" />
|
<set name="default_action" val="SKILL_REDUCE" />
|
||||||
<set name="is_tradable" val="false" />
|
<set name="immediate_effect" val="true" />
|
||||||
<set name="is_dropable" val="false" />
|
|
||||||
<set name="is_depositable" val="false" />
|
|
||||||
<set name="is_sellable" val="false" />
|
|
||||||
<set name="is_stackable" val="true" />
|
<set name="is_stackable" val="true" />
|
||||||
|
<set name="is_sellable" val="false" />
|
||||||
|
<set name="etcitem_type" val="SCROLL" />
|
||||||
|
<set name="commissionItemType" val="OTHER_ITEM" />
|
||||||
|
<set name="handler" val="ItemSkills" />
|
||||||
|
<cond msgId="1902">
|
||||||
|
<player levelRange="99;255" />
|
||||||
|
</cond>
|
||||||
|
<skills>
|
||||||
|
<skill id="18628" level="1" /> <!-- Express Bus Pass Card -->
|
||||||
|
</skills>
|
||||||
</item>
|
</item>
|
||||||
<item id="47385" name="Balthus Knight Mark" type="EtcItem">
|
<item id="47385" name="Balthus Knight Mark" type="EtcItem">
|
||||||
<!-- Used to dress up as a member of the Balthus Knights for 1 hour. Only available for characters with Lv. 85 or higher. Buff deleted if Sub/Dual Class is changed. To be deleted when the event ends. Will be deleted when the Balthus Knights Event ends. -->
|
<!-- Used to dress up as a member of the Balthus Knights for 1 hour. Only available for characters with Lv. 85 or higher. Buff deleted if Sub/Dual Class is changed. To be deleted when the event ends. Will be deleted when the Balthus Knights Event ends. -->
|
||||||
|
@@ -945,9 +945,26 @@
|
|||||||
<operateType>A1</operateType>
|
<operateType>A1</operateType>
|
||||||
</skill>
|
</skill>
|
||||||
<skill id="18628" toLevel="1" name="Express Bus Pass Card">
|
<skill id="18628" toLevel="1" name="Express Bus Pass Card">
|
||||||
<!-- AUTO GENERATED SKILL TODO: FIX IT -->
|
|
||||||
<icon>icon.skill0000</icon>
|
<icon>icon.skill0000</icon>
|
||||||
|
<isMagic>2</isMagic> <!-- Static Skill -->
|
||||||
|
<itemConsumeCount>1</itemConsumeCount>
|
||||||
|
<itemConsumeId>47384</itemConsumeId> <!-- Express Bus Pass Card -->
|
||||||
|
<magicLvl>1</magicLvl>
|
||||||
<operateType>A1</operateType>
|
<operateType>A1</operateType>
|
||||||
|
<reuseDelay>1000</reuseDelay>
|
||||||
|
<rideState>NONE;STRIDER;WYVERN;WOLF</rideState>
|
||||||
|
<magicCriticalRate>5</magicCriticalRate>
|
||||||
|
<hitCancelTime>0</hitCancelTime>
|
||||||
|
<targetType>SELF</targetType>
|
||||||
|
<affectScope>SINGLE</affectScope>
|
||||||
|
<effects>
|
||||||
|
<effect name="GiveXp">
|
||||||
|
<xp>100000000000</xp>
|
||||||
|
</effect>
|
||||||
|
<effect name="GiveSp">
|
||||||
|
<xp>240000000</xp>
|
||||||
|
</effect>
|
||||||
|
</effects>
|
||||||
</skill>
|
</skill>
|
||||||
<skill id="18629" toLevel="1" name="Balthus Knight Disguise">
|
<skill id="18629" toLevel="1" name="Balthus Knight Disguise">
|
||||||
<!-- AUTO GENERATED SKILL TODO: FIX IT -->
|
<!-- AUTO GENERATED SKILL TODO: FIX IT -->
|
||||||
|
@@ -2090,7 +2090,7 @@
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="xp" type="xs:unsignedInt" />
|
<xs:element name="xp" type="xs:unsignedLong" />
|
||||||
<xs:element name="ACCURACY_COMBAT">
|
<xs:element name="ACCURACY_COMBAT">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
|
@@ -28,11 +28,11 @@ import com.l2jmobius.gameserver.model.skills.Skill;
|
|||||||
*/
|
*/
|
||||||
public final class GiveXp extends AbstractEffect
|
public final class GiveXp extends AbstractEffect
|
||||||
{
|
{
|
||||||
private final int _xp;
|
private final long _xp;
|
||||||
|
|
||||||
public GiveXp(StatsSet params)
|
public GiveXp(StatsSet params)
|
||||||
{
|
{
|
||||||
_xp = params.getInt("xp", 0);
|
_xp = params.getLong("xp", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -1226,12 +1226,18 @@
|
|||||||
<!-- A bus card that can be used to get on the Express Bus. Use to acquire 100,000,000,000 EXP and 240,000,000 SP. Characters with Lv. 99 or higher only. -->
|
<!-- A bus card that can be used to get on the Express Bus. Use to acquire 100,000,000,000 EXP and 240,000,000 SP. Characters with Lv. 99 or higher only. -->
|
||||||
<set name="icon" val="icon.card_hidden" />
|
<set name="icon" val="icon.card_hidden" />
|
||||||
<set name="default_action" val="SKILL_REDUCE" />
|
<set name="default_action" val="SKILL_REDUCE" />
|
||||||
<set name="is_tradable" val="false" />
|
<set name="immediate_effect" val="true" />
|
||||||
<set name="is_dropable" val="false" />
|
|
||||||
<set name="is_depositable" val="false" />
|
|
||||||
<set name="is_sellable" val="false" />
|
|
||||||
<set name="is_stackable" val="true" />
|
<set name="is_stackable" val="true" />
|
||||||
<set name="is_private_storeable" val="false" />
|
<set name="is_sellable" val="false" />
|
||||||
|
<set name="etcitem_type" val="SCROLL" />
|
||||||
|
<set name="commissionItemType" val="OTHER_ITEM" />
|
||||||
|
<set name="handler" val="ItemSkills" />
|
||||||
|
<cond msgId="1902">
|
||||||
|
<player levelRange="99;255" />
|
||||||
|
</cond>
|
||||||
|
<skills>
|
||||||
|
<skill id="18628" level="1" /> <!-- Express Bus Pass Card -->
|
||||||
|
</skills>
|
||||||
</item>
|
</item>
|
||||||
<item id="47385" name="Balthus Knight Mark" type="EtcItem">
|
<item id="47385" name="Balthus Knight Mark" type="EtcItem">
|
||||||
<!-- Makes you eligible to receive a Member of the Balthus Knight disguise for 1 hour. Can be used only by characters of Level 85 or higher. Buff gets deleted upon Subclass/Dual Class change. To be deleted on Wednesday June 15th, 2016 after regular maintenance. -->
|
<!-- Makes you eligible to receive a Member of the Balthus Knight disguise for 1 hour. Can be used only by characters of Level 85 or higher. Buff gets deleted upon Subclass/Dual Class change. To be deleted on Wednesday June 15th, 2016 after regular maintenance. -->
|
||||||
|
@@ -945,9 +945,26 @@
|
|||||||
<operateType>A1</operateType>
|
<operateType>A1</operateType>
|
||||||
</skill>
|
</skill>
|
||||||
<skill id="18628" toLevel="1" name="Express Bus Pass Card">
|
<skill id="18628" toLevel="1" name="Express Bus Pass Card">
|
||||||
<!-- AUTO GENERATED SKILL TODO: FIX IT -->
|
|
||||||
<icon>icon.skill0000</icon>
|
<icon>icon.skill0000</icon>
|
||||||
|
<isMagic>2</isMagic> <!-- Static Skill -->
|
||||||
|
<itemConsumeCount>1</itemConsumeCount>
|
||||||
|
<itemConsumeId>47384</itemConsumeId> <!-- Express Bus Pass Card -->
|
||||||
|
<magicLvl>1</magicLvl>
|
||||||
<operateType>A1</operateType>
|
<operateType>A1</operateType>
|
||||||
|
<reuseDelay>1000</reuseDelay>
|
||||||
|
<rideState>NONE;STRIDER;WYVERN;WOLF</rideState>
|
||||||
|
<magicCriticalRate>5</magicCriticalRate>
|
||||||
|
<hitCancelTime>0</hitCancelTime>
|
||||||
|
<targetType>SELF</targetType>
|
||||||
|
<affectScope>SINGLE</affectScope>
|
||||||
|
<effects>
|
||||||
|
<effect name="GiveXp">
|
||||||
|
<xp>100000000000</xp>
|
||||||
|
</effect>
|
||||||
|
<effect name="GiveSp">
|
||||||
|
<xp>240000000</xp>
|
||||||
|
</effect>
|
||||||
|
</effects>
|
||||||
</skill>
|
</skill>
|
||||||
<skill id="18629" toLevel="1" name="Balthus Knight Disguise">
|
<skill id="18629" toLevel="1" name="Balthus Knight Disguise">
|
||||||
<!-- AUTO GENERATED SKILL TODO: FIX IT -->
|
<!-- AUTO GENERATED SKILL TODO: FIX IT -->
|
||||||
|
@@ -2052,7 +2052,7 @@
|
|||||||
<xs:element name="hp" type="xs:unsignedByte" />
|
<xs:element name="hp" type="xs:unsignedByte" />
|
||||||
<xs:element name="mp" type="xs:unsignedByte" />
|
<xs:element name="mp" type="xs:unsignedByte" />
|
||||||
<xs:element name="cp" type="xs:unsignedByte" />
|
<xs:element name="cp" type="xs:unsignedByte" />
|
||||||
<xs:element name="xp" type="xs:unsignedInt" />
|
<xs:element name="xp" type="xs:unsignedLong" />
|
||||||
<xs:element name="ACCURACY_COMBAT">
|
<xs:element name="ACCURACY_COMBAT">
|
||||||
<xs:complexType mixed="true">
|
<xs:complexType mixed="true">
|
||||||
<xs:sequence minOccurs="0">
|
<xs:sequence minOccurs="0">
|
||||||
|
Reference in New Issue
Block a user