Addition of HpLimit effect handler.

Contributed by dontknowdontcare.
This commit is contained in:
MobiusDevelopment
2022-03-19 01:41:52 +00:00
parent 49d468dcd4
commit 545d1d5a10
270 changed files with 4002 additions and 5985 deletions

View File

@@ -347,6 +347,10 @@ MaxMAtkSpeed = 1999
# Default: 250
MaxEvasion = 250
# Maximum character HP.
# Default: 150000
MaxHP = 150000
# Minimum and Maximum Abnormal State Success Rate.
# This affect all skills/effects chances, except in skills where minChance or maxChance parameters are defined.
# Default: H5 minimum of 10% and maximum of 90%.

View File

@@ -1,455 +0,0 @@
/*
* This file is part of the L2J Mobius project.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ai.others;
import org.l2jmobius.commons.util.CommonUtil;
import org.l2jmobius.gameserver.model.actor.Player;
import org.l2jmobius.gameserver.model.events.EventType;
import org.l2jmobius.gameserver.model.events.ListenerRegisterType;
import org.l2jmobius.gameserver.model.events.annotations.Id;
import org.l2jmobius.gameserver.model.events.annotations.RegisterEvent;
import org.l2jmobius.gameserver.model.events.annotations.RegisterType;
import org.l2jmobius.gameserver.model.events.impl.creature.player.OnPlayerItemEquip;
import org.l2jmobius.gameserver.model.events.impl.creature.player.OnPlayerItemUnequip;
import org.l2jmobius.gameserver.model.events.impl.creature.player.OnPlayerLogin;
import org.l2jmobius.gameserver.model.item.Weapon;
import ai.AbstractNpcAI;
/**
* @author Mobius
*/
public class DragonWeaponListeners extends AbstractNpcAI
{
private static final int[] WEAPON_IDS =
{
36417,
36418,
36419,
36420,
36421,
36422,
36423,
36424,
36425,
36426,
36441,
36442,
36443,
36444,
36445,
36446,
36447,
36448,
36449,
36450,
36465,
36466,
36467,
36468,
36469,
36470,
36471,
36472,
36473,
36474,
36489,
36490,
36491,
36492,
36493,
36494,
36495,
36496,
36497,
36498,
36427,
36428,
36429,
36430,
36431,
36432,
36433,
36451,
36452,
36453,
36454,
36455,
36456,
36457,
36475,
36476,
36477,
36478,
36479,
36480,
36481,
36499,
36500,
36501,
36502,
36503,
36504,
36505,
36434,
36435,
36436,
36437,
36438,
36439,
36440,
36458,
36459,
36460,
36461,
36462,
36463,
36464,
36482,
36483,
36484,
36485,
36486,
36487,
36488,
36506,
36507,
36508,
36509,
36510,
36511,
36512,
80066,
80067,
80068,
80069,
80070,
80071,
80072,
80073,
80074,
80075,
80076,
80077,
80078,
80079,
80080,
80081,
80082,
80083,
80084,
80085,
80086,
80087,
80088,
80089,
80315,
80316,
80317,
80318,
};
@RegisterEvent(EventType.ON_PLAYER_LOGIN)
@RegisterType(ListenerRegisterType.GLOBAL_PLAYERS)
public void onPlayerLogin(OnPlayerLogin event)
{
final Player player = event.getPlayer();
if (player != null)
{
final Weapon weapon = player.getActiveWeaponItem();
if ((weapon != null) && CommonUtil.contains(WEAPON_IDS, weapon.getId()))
{
player.setDragonWeaponEquipped(true);
}
}
}
@RegisterEvent(EventType.ON_PLAYER_ITEM_EQUIP)
@RegisterType(ListenerRegisterType.ITEM)
@Id(36417)
@Id(36418)
@Id(36419)
@Id(36420)
@Id(36421)
@Id(36422)
@Id(36423)
@Id(36424)
@Id(36425)
@Id(36426)
@Id(36441)
@Id(36442)
@Id(36443)
@Id(36444)
@Id(36445)
@Id(36446)
@Id(36447)
@Id(36448)
@Id(36449)
@Id(36450)
@Id(36465)
@Id(36466)
@Id(36467)
@Id(36468)
@Id(36469)
@Id(36470)
@Id(36471)
@Id(36472)
@Id(36473)
@Id(36474)
@Id(36489)
@Id(36490)
@Id(36491)
@Id(36492)
@Id(36493)
@Id(36494)
@Id(36495)
@Id(36496)
@Id(36497)
@Id(36498)
@Id(36427)
@Id(36428)
@Id(36429)
@Id(36430)
@Id(36431)
@Id(36432)
@Id(36433)
@Id(36451)
@Id(36452)
@Id(36453)
@Id(36454)
@Id(36455)
@Id(36456)
@Id(36457)
@Id(36475)
@Id(36476)
@Id(36477)
@Id(36478)
@Id(36479)
@Id(36480)
@Id(36481)
@Id(36499)
@Id(36500)
@Id(36501)
@Id(36502)
@Id(36503)
@Id(36504)
@Id(36505)
@Id(36434)
@Id(36435)
@Id(36436)
@Id(36437)
@Id(36438)
@Id(36439)
@Id(36440)
@Id(36458)
@Id(36459)
@Id(36460)
@Id(36461)
@Id(36462)
@Id(36463)
@Id(36464)
@Id(36482)
@Id(36483)
@Id(36484)
@Id(36485)
@Id(36486)
@Id(36487)
@Id(36488)
@Id(36506)
@Id(36507)
@Id(36508)
@Id(36509)
@Id(36510)
@Id(36511)
@Id(36512)
@Id(80066)
@Id(80067)
@Id(80068)
@Id(80069)
@Id(80070)
@Id(80071)
@Id(80072)
@Id(80073)
@Id(80074)
@Id(80075)
@Id(80076)
@Id(80077)
@Id(80078)
@Id(80079)
@Id(80080)
@Id(80081)
@Id(80082)
@Id(80083)
@Id(80084)
@Id(80085)
@Id(80086)
@Id(80087)
@Id(80088)
@Id(80089)
@Id(80315)
@Id(80316)
@Id(80317)
@Id(80318)
public void onPlayerItemEquip(OnPlayerItemEquip event)
{
final Player player = event.getPlayer();
if (player != null)
{
player.setDragonWeaponEquipped(true);
}
}
@RegisterEvent(EventType.ON_PLAYER_ITEM_UNEQUIP)
@RegisterType(ListenerRegisterType.ITEM)
@Id(36417)
@Id(36418)
@Id(36419)
@Id(36420)
@Id(36421)
@Id(36422)
@Id(36423)
@Id(36424)
@Id(36425)
@Id(36426)
@Id(36441)
@Id(36442)
@Id(36443)
@Id(36444)
@Id(36445)
@Id(36446)
@Id(36447)
@Id(36448)
@Id(36449)
@Id(36450)
@Id(36465)
@Id(36466)
@Id(36467)
@Id(36468)
@Id(36469)
@Id(36470)
@Id(36471)
@Id(36472)
@Id(36473)
@Id(36474)
@Id(36489)
@Id(36490)
@Id(36491)
@Id(36492)
@Id(36493)
@Id(36494)
@Id(36495)
@Id(36496)
@Id(36497)
@Id(36498)
@Id(36427)
@Id(36428)
@Id(36429)
@Id(36430)
@Id(36431)
@Id(36432)
@Id(36433)
@Id(36451)
@Id(36452)
@Id(36453)
@Id(36454)
@Id(36455)
@Id(36456)
@Id(36457)
@Id(36475)
@Id(36476)
@Id(36477)
@Id(36478)
@Id(36479)
@Id(36480)
@Id(36481)
@Id(36499)
@Id(36500)
@Id(36501)
@Id(36502)
@Id(36503)
@Id(36504)
@Id(36505)
@Id(36434)
@Id(36435)
@Id(36436)
@Id(36437)
@Id(36438)
@Id(36439)
@Id(36440)
@Id(36458)
@Id(36459)
@Id(36460)
@Id(36461)
@Id(36462)
@Id(36463)
@Id(36464)
@Id(36482)
@Id(36483)
@Id(36484)
@Id(36485)
@Id(36486)
@Id(36487)
@Id(36488)
@Id(36506)
@Id(36507)
@Id(36508)
@Id(36509)
@Id(36510)
@Id(36511)
@Id(36512)
@Id(80066)
@Id(80067)
@Id(80068)
@Id(80069)
@Id(80070)
@Id(80071)
@Id(80072)
@Id(80073)
@Id(80074)
@Id(80075)
@Id(80076)
@Id(80077)
@Id(80078)
@Id(80079)
@Id(80080)
@Id(80081)
@Id(80082)
@Id(80083)
@Id(80084)
@Id(80085)
@Id(80086)
@Id(80087)
@Id(80088)
@Id(80089)
@Id(80315)
@Id(80316)
@Id(80317)
@Id(80318)
public void onPlayerItemUnequip(OnPlayerItemUnequip event)
{
final Player player = event.getPlayer();
if (player != null)
{
player.setDragonWeaponEquipped(false);
}
}
public static void main(String[] args)
{
new DragonWeaponListeners();
}
}

View File

@@ -182,6 +182,7 @@ public class EffectMasterHandler
EffectHandler.getInstance().registerHandler("HpCpHeal", HpCpHeal::new);
EffectHandler.getInstance().registerHandler("HpCpHealCritical", HpCpHealCritical::new);
EffectHandler.getInstance().registerHandler("HpDrain", HpDrain::new);
EffectHandler.getInstance().registerHandler("HpLimit", HpLimit::new);
EffectHandler.getInstance().registerHandler("HpRegen", HpRegen::new);
EffectHandler.getInstance().registerHandler("HpToOwner", HpToOwner::new);
EffectHandler.getInstance().registerHandler("IgnoreDeath", IgnoreDeath::new);

View File

@@ -0,0 +1,31 @@
/*
* This file is part of the L2J Mobius project.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package handlers.effecthandlers;
import org.l2jmobius.gameserver.model.StatSet;
import org.l2jmobius.gameserver.model.stats.Stat;
/**
* @author dontknowdontcare
*/
public class HpLimit extends AbstractStatEffect
{
public HpLimit(StatSet params)
{
super(params, Stat.HP_LIMIT);
}
}

View File

@@ -212,6 +212,7 @@
<item id="36417" name="Antharas Shaper" additionalName="Fragment" type="Weapon">
<!-- Antharas' Shaper Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_dagger_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="DAGGER" />
<set name="default_action" val="EQUIP" />
<set name="crystal_type" val="R" />
@@ -237,6 +238,7 @@
<item id="36418" name="Antharas Slasher" additionalName="Fragment" type="Weapon">
<!-- Antharas' Slasher Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_twohand_sword_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="SWORD" />
<set name="default_action" val="EQUIP" />
<set name="crystal_type" val="R" />
@@ -261,6 +263,7 @@
<item id="36419" name="Antharas Thrower" additionalName="Fragment" type="Weapon">
<!-- Antharas' Thrower Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_bow_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="BOW" />
<set name="default_action" val="EQUIP" />
<set name="crystal_type" val="R" />
@@ -288,6 +291,7 @@
<item id="36420" name="Antharas Buster" additionalName="Fragment" type="Weapon">
<!-- Antharas' Buster Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_onehand_magic_sword_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="SWORD" />
<set name="default_action" val="EQUIP" />
<set name="crystal_type" val="R" />
@@ -313,6 +317,7 @@
<item id="36421" name="Antharas Cutter" additionalName="Fragment" type="Weapon">
<!-- Antharas' Cutter Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_onehand_sword_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="SWORD" />
<set name="default_action" val="EQUIP" />
<set name="immediate_effect" val="true" />
@@ -336,6 +341,7 @@
<item id="36422" name="Antharas Stormer" additionalName="Fragment" type="Weapon">
<!-- Antharas' Stormer Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_spear_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="POLE" />
<set name="default_action" val="EQUIP" />
<set name="crystal_type" val="R" />
@@ -365,6 +371,7 @@
<item id="36423" name="Antharas Fighter" additionalName="Fragment" type="Weapon">
<!-- Antharas' Fighter Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_fist_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="DUALFIST" />
<set name="default_action" val="EQUIP" />
<set name="crystal_type" val="R" />
@@ -390,6 +397,7 @@
<item id="36424" name="Antharas Avenger" additionalName="Fragment" type="Weapon">
<!-- Antharas' Avenger Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_onehand_blunt_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="BLUNT" />
<set name="default_action" val="EQUIP" />
<set name="crystal_type" val="R" />
@@ -415,6 +423,7 @@
<item id="36425" name="Antharas Dual Blunt Weapon" additionalName="Fragment" type="Weapon">
<!-- Antharas' Dual Blunt Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_dual_blunt_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="DUALBLUNT" />
<set name="default_action" val="EQUIP" />
<set name="crystal_type" val="R" />
@@ -440,6 +449,7 @@
<item id="36426" name="Antharas Dualsword" additionalName="Fragment" type="Weapon">
<!-- Antharas' Dualsword Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_antaras_dual_sword_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="DUAL" />
<set name="default_action" val="EQUIP" />
<set name="crystal_type" val="R" />
@@ -464,6 +474,7 @@
<item id="36427" name="Valakas Shaper" additionalName="Fragment" type="Weapon">
<!-- Valakas' Shaper Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_valrakas_dagger_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -489,6 +500,7 @@
<item id="36428" name="Valakas Cutter" additionalName="Fragment" type="Weapon">
<!-- Valakas' Cutter Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_valrakas_onehand_sword_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -513,6 +525,7 @@
<item id="36429" name="Valakas Slasher" additionalName="Fragment" type="Weapon">
<!-- Valakas' Slasher Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_valrakas_twohand_sword_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -537,6 +550,7 @@
<item id="36430" name="Valakas Thrower" additionalName="Fragment" type="Weapon">
<!-- Valakas' Thrower Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_valrakas_bow_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -564,6 +578,7 @@
<item id="36431" name="Valakas Buster" additionalName="Fragment" type="Weapon">
<!-- Valakas' Buster Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_valrakas_onehand_magic_sword_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -589,6 +604,7 @@
<item id="36432" name="Valakas Caster" additionalName="Fragment" type="Weapon">
<!-- Valakas' Caster Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_valrakas_onehand_magic_blunt_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -615,6 +631,7 @@
<item id="36433" name="Valakas Retributer" additionalName="Fragment" type="Weapon">
<!-- Valakas' Retributer Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_valrakas_twohand_magic_blunt_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -642,6 +659,7 @@
<item id="36434" name="Lindvior Shaper" additionalName="Fragment" type="Weapon">
<!-- Lindvior's Shaper Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_lind_dagger_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -667,6 +685,7 @@
<item id="36435" name="Lindvior Thrower" additionalName="Fragment" type="Weapon">
<!-- Lindvior's Thrower Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_lind_bow_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -694,6 +713,7 @@
<item id="36436" name="Lindvior Slasher" additionalName="Fragment" type="Weapon">
<!-- Lindvior's Slasher Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_lind_twohand_sword_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -718,6 +738,7 @@
<item id="36437" name="Lindvior Caster" additionalName="Fragment" type="Weapon">
<!-- Lindvior's Caster Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_lind_onehand_magic_blunt_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -743,6 +764,7 @@
<item id="36438" name="Lindvior Cutter" additionalName="Fragment" type="Weapon">
<!-- Lindvior's Cutter Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_lind_onehand_sword_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -767,6 +789,7 @@
<item id="36439" name="Lindvior Shooter" additionalName="Fragment" type="Weapon">
<!-- Lindvior's Shooter Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_lind_crossbow_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="TWOHANDCROSSBOW" />
<set name="damage_range" val="0;0;40;120" />
<set name="bodypart" val="lrhand" />
@@ -794,6 +817,7 @@
<item id="36440" name="Lindvior Dual Dagger" additionalName="Fragment" type="Weapon">
<!-- Lindvior's Dual Dagger Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. -->
<set name="icon" val="icon.weapon_lind_dual_dagger_i00" />
<set name="is_dragon_weapon" val="true"/>
<set name="weapon_type" val="DUALDAGGER" />
<set name="crystal_type" val="R" />
<set name="default_action" val="EQUIP" />
@@ -819,6 +843,7 @@
<item id="36441" name="Antharas Shaper" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
@@ -848,6 +873,7 @@
<item id="36442" name="Antharas Slasher" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_twohand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -876,6 +902,7 @@
<item id="36443" name="Antharas Thrower" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_bow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
@@ -906,6 +933,7 @@
<item id="36444" name="Antharas Buster" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_onehand_magic_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -935,6 +963,7 @@
<item id="36445" name="Antharas Cutter" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute.Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_onehand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -963,6 +992,7 @@
<item id="36446" name="Antharas Stormer" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute.Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_spear_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="POLE" />
<set name="crystal_type" val="R" />
@@ -993,6 +1023,7 @@
<item id="36447" name="Antharas Fighter" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_fist_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUALFIST" />
<set name="crystal_type" val="R" />
@@ -1022,6 +1053,7 @@
<item id="36448" name="Antharas Avenger" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_onehand_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -1051,6 +1083,7 @@
<item id="36449" name="Antharas Dual Blunt Weapon" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_dual_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUALBLUNT" />
<set name="crystal_type" val="R" />
@@ -1080,6 +1113,7 @@
<item id="36450" name="Antharas Dualsword" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_dual_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUAL" />
<set name="crystal_type" val="R" />
@@ -1109,6 +1143,7 @@
<item id="36451" name="Valakas Shaper" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
@@ -1138,6 +1173,7 @@
<item id="36452" name="Valakas Cutter" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_onehand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1166,6 +1202,7 @@
<item id="36453" name="Valakas Slasher" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_twohand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1194,6 +1231,7 @@
<item id="36454" name="Valakas Thrower" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_bow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
@@ -1224,6 +1262,7 @@
<item id="36455" name="Valakas Buster" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_onehand_magic_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1253,6 +1292,7 @@
<item id="36456" name="Valakas Caster" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_onehand_magic_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -1283,6 +1323,7 @@
<item id="36457" name="Valakas Retributer" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_twohand_magic_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -1314,6 +1355,7 @@
<item id="36458" name="Lindvior Shaper" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
@@ -1343,6 +1385,7 @@
<item id="36459" name="Lindvior Thrower" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_bow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
@@ -1373,6 +1416,7 @@
<item id="36460" name="Lindvior Slasher" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_twohand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1401,6 +1445,7 @@
<item id="36461" name="Lindvior Caster" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, P. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_onehand_magic_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -1431,6 +1476,7 @@
<item id="36462" name="Lindvior Cutter" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_onehand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1459,6 +1505,7 @@
<item id="36463" name="Lindvior Shooter" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_crossbow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="TWOHANDCROSSBOW" />
<set name="crystal_type" val="R" />
@@ -1489,6 +1536,7 @@
<item id="36464" name="Lindvior Dual Dagger" additionalName="Standard" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_dual_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUALDAGGER" />
<set name="crystal_type" val="R" />
@@ -1518,6 +1566,7 @@
<item id="36465" name="Antharas Shaper" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
@@ -1550,6 +1599,7 @@
<item id="36466" name="Antharas Slasher" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_twohand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1581,6 +1631,7 @@
<item id="36467" name="Antharas Thrower" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_bow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
@@ -1614,6 +1665,7 @@
<item id="36468" name="Antharas Buster" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_onehand_magic_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1646,6 +1698,7 @@
<item id="36469" name="Antharas Cutter" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_onehand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1677,6 +1730,7 @@
<item id="36470" name="Antharas Stormer" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_spear_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="POLE" />
<set name="crystal_type" val="R" />
@@ -1710,6 +1764,7 @@
<item id="36471" name="Antharas Fighter" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_fist_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUALFIST" />
<set name="crystal_type" val="R" />
@@ -1742,6 +1797,7 @@
<item id="36472" name="Antharas Avenger" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_onehand_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -1774,6 +1830,7 @@
<item id="36473" name="Antharas Dual Blunt Weapon" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_dual_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUALBLUNT" />
<set name="crystal_type" val="R" />
@@ -1806,6 +1863,7 @@
<item id="36474" name="Antharas Dualsword" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Antharas' Lash. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_dual_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUAL" />
<set name="crystal_type" val="R" />
@@ -1838,6 +1896,7 @@
<item id="36475" name="Valakas Shaper" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Valakas' Bite. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
@@ -1870,6 +1929,7 @@
<item id="36476" name="Valakas Cutter" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Valakas' Bite. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_onehand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1901,6 +1961,7 @@
<item id="36477" name="Valakas Slasher" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Valakas' Bite. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_twohand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1932,6 +1993,7 @@
<item id="36478" name="Valakas Thrower" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Valakas' Bite. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_bow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
@@ -1965,6 +2027,7 @@
<item id="36479" name="Valakas Buster" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Valakas' Bite. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_onehand_magic_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -1997,6 +2060,7 @@
<item id="36480" name="Valakas Caster" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Valakas' Bite. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_onehand_magic_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -2030,6 +2094,7 @@
<item id="36481" name="Valakas Retributer" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Valakas' Bite. Can be upgraded to a higher grade through Valakas Watchman Klein. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_twohand_magic_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -2064,6 +2129,7 @@
<item id="36482" name="Lindvior Shaper" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Lindvior's Wingbeat. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
@@ -2096,6 +2162,7 @@
<item id="36483" name="Lindvior Thrower" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Lindvior's Wingbeat. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_bow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
@@ -2129,6 +2196,7 @@
<item id="36484" name="Lindvior Slasher" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Lindvior's Wingbeat. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_twohand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -2160,6 +2228,7 @@
<item id="36485" name="Lindvior Caster" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Casting Spd. + 30%, M. Critical Rate + 100, M. Skill Critical Rate + 30%, M. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Lindvior's Wingbeat. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_onehand_magic_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -2193,6 +2262,7 @@
<item id="36486" name="Lindvior Cutter" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Lindvior's Wingbeat. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_onehand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -2224,6 +2294,7 @@
<item id="36487" name="Lindvior Shooter" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Lindvior's Wingbeat. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_crossbow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="TWOHANDCROSSBOW" />
<set name="crystal_type" val="R" />
@@ -2257,6 +2328,7 @@
<item id="36488" name="Lindvior Dual Dagger" additionalName="High-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 30%, Max HP/MP/CP + 30%, Atk. Spd. + 30%, P. Critical Rate + 100, P. Skill Critical Rate + 30%, P. Skill Critical Damage + 30%, damage on dragons + 100%. Use Active Skills Dignity and Lindvior's Wingbeat. Can be upgraded to a higher grade through Aden's Wizard Jenna. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_dual_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUALDAGGER" />
<set name="crystal_type" val="R" />
@@ -2289,6 +2361,7 @@
<item id="36489" name="Antharas Shaper" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
@@ -2322,6 +2395,7 @@
<item id="36490" name="Antharas Slasher" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_twohand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -2354,6 +2428,7 @@
<item id="36491" name="Antharas Thrower" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_bow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
@@ -2388,6 +2463,7 @@
<item id="36492" name="Antharas Buster" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Casting Spd. + 100%, M. Critical Rate + 500, M. Skill Critical Rate + 50%, M. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_onehand_magic_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -2421,6 +2497,7 @@
<item id="36493" name="Antharas Cutter" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_onehand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -2453,6 +2530,7 @@
<item id="36494" name="Antharas Stormer" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_spear_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="POLE" />
<set name="crystal_type" val="R" />
@@ -2487,6 +2565,7 @@
<item id="36495" name="Antharas Fighter" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_fist_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUALFIST" />
<set name="crystal_type" val="R" />
@@ -2520,6 +2599,7 @@
<item id="36496" name="Antharas Avenger" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_onehand_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -2553,6 +2633,7 @@
<item id="36497" name="Antharas Dual Blunt Weapon" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_dual_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUALBLUNT" />
<set name="crystal_type" val="R" />
@@ -2586,6 +2667,7 @@
<item id="36498" name="Antharas Dualsword" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Antharas' Lash and Antharas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_antaras_dual_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUAL" />
<set name="crystal_type" val="R" />
@@ -2619,6 +2701,7 @@
<item id="36499" name="Valakas Shaper" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Valakas' Bite and Valakas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />

View File

@@ -3,6 +3,7 @@
<item id="36500" name="Valakas Cutter" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Valakas' Bite and Valakas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_onehand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -35,6 +36,7 @@
<item id="36501" name="Valakas Slasher" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Valakas' Bite and Valakas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_twohand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -67,6 +69,7 @@
<item id="36502" name="Valakas Thrower" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Valakas' Bite and Valakas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_bow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
@@ -101,6 +104,7 @@
<item id="36503" name="Valakas Buster" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Casting Spd. + 100%, M. Critical Rate + 500, M. Skill Critical Rate + 50%, M. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Valakas' Bite and Valakas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_onehand_magic_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -134,6 +138,7 @@
<item id="36504" name="Valakas Caster" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Casting Spd. + 100%, P. Critical Rate + 500, M. Skill Critical Rate + 50%, M. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Valakas' Bite and Valakas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_onehand_magic_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -168,6 +173,7 @@
<item id="36505" name="Valakas Retributer" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Casting Spd. + 100%, M. Critical Rate + 500, M. Skill Critical Rate + 50%, M. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Valakas' Bite and Valakas' Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_valrakas_twohand_magic_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -204,6 +210,7 @@
<item id="36506" name="Lindvior Shaper" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Lindvior's Wingbeat and Lindvior's Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DAGGER" />
<set name="crystal_type" val="R" />
@@ -237,6 +244,7 @@
<item id="36507" name="Lindvior Thrower" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Lindvior's Wingbeat and Lindvior's Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_bow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BOW" />
<set name="crystal_type" val="R" />
@@ -271,6 +279,7 @@
<item id="36508" name="Lindvior Slasher" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Lindvior's Wingbeat and Lindvior's Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_twohand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -303,6 +312,7 @@
<item id="36509" name="Lindvior Caster" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the wisdom of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Casting Spd. + 100%, M. Critical Rate + 500, M. Skill Critical Rate + 50%, M. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Lindvior's Wingbeat and Lindvior's Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_onehand_magic_blunt_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="BLUNT" />
<set name="crystal_type" val="R" />
@@ -337,6 +347,7 @@
<item id="36510" name="Lindvior Cutter" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Lindvior's Wingbeat and Lindvior's Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_onehand_sword_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="SWORD" />
<set name="crystal_type" val="R" />
@@ -369,6 +380,7 @@
<item id="36511" name="Lindvior Shooter" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Lindvior's Wingbeat and Lindvior's Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_crossbow_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="TWOHANDCROSSBOW" />
<set name="crystal_type" val="R" />
@@ -403,6 +415,7 @@
<item id="36512" name="Lindvior Dual Dagger" additionalName="Top-grade" type="Weapon">
<!-- A weapon imbued with the power of the dragons. PvP Damage + 50%, Max HP/MP/CP + 100%, Atk. Spd. + 100%, P. Critical Rate + 500, P. Skill Critical Rate + 50%, P. Skill Critical Damage + 50%, damage on dragons + 300%. Use Active Skills Dignity, Lindvior's Wingbeat and Lindvior's Breath. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. Can bestow 1 Special Soul Crystal. -->
<set name="icon" val="icon.weapon_lind_dual_dagger_i01" />
<set name="is_dragon_weapon" val="true"/>
<set name="default_action" val="EQUIP" />
<set name="weapon_type" val="DUALDAGGER" />
<set name="crystal_type" val="R" />

View File

@@ -153,6 +153,7 @@ HpCpHealCritical: HpCp heal effects always trigger Magic Critical Hit.
HpCpHeal: Increases current HP by a given amount. If the given amount exceeds maximum HP, it increases current CP with the rest value as well.
HpDrain: Magical attack that absorbs given percentage of the damage inflicted as HP.
Hp: Increases current HP by a static value.
HpLimit: Increase a character's max hp limit (l2jmobius)
HpRegen: HP Regeneration stat.
HpToOwner: DOT effect that absorbs HP over time.
IgnoreDeath: Become undying. Hp cannot decrease below 1.

View File

@@ -216,6 +216,7 @@ public class Config
public static int MAX_PATK_SPEED;
public static int MAX_MATK_SPEED;
public static int MAX_EVASION;
public static int MAX_HP;
public static int MIN_ABNORMAL_STATE_SUCCESS_RATE;
public static int MAX_ABNORMAL_STATE_SUCCESS_RATE;
public static long MAX_SP;
@@ -1814,6 +1815,7 @@ public class Config
MAX_PATK_SPEED = characterConfig.getInt("MaxPAtkSpeed", 1500);
MAX_MATK_SPEED = characterConfig.getInt("MaxMAtkSpeed", 1999);
MAX_EVASION = characterConfig.getInt("MaxEvasion", 250);
MAX_HP = characterConfig.getInt("MaxHP", 150000);
MIN_ABNORMAL_STATE_SUCCESS_RATE = characterConfig.getInt("MinAbnormalStateSuccessRate", 10);
MAX_ABNORMAL_STATE_SUCCESS_RATE = characterConfig.getInt("MaxAbnormalStateSuccessRate", 90);
MAX_SP = characterConfig.getLong("MaxSp", 50000000000L) >= 0 ? characterConfig.getLong("MaxSp", 50000000000L) : Long.MAX_VALUE;

View File

@@ -760,8 +760,6 @@ public class Player extends Playable
private int _cursedWeaponEquippedId = 0;
private boolean _combatFlagEquippedId = false;
private boolean _isDragonWeaponEquipped = false;
private boolean _canRevive = true;
private int _reviveRequested = 0;
private double _revivePower = 0;
@@ -11446,16 +11444,6 @@ public class Player extends Playable
return _cursedWeaponEquippedId;
}
public void setDragonWeaponEquipped(boolean value)
{
_isDragonWeaponEquipped = value;
}
public boolean isDragonWeaponEquipped()
{
return _isDragonWeaponEquipped;
}
public boolean isCombatFlagEquipped()
{
return _combatFlagEquippedId;

View File

@@ -38,6 +38,7 @@ public class Weapon extends ItemTemplate
{
private WeaponType _type;
private boolean _isMagicWeapon;
private boolean _isDragonWeapon;
private int _soulShotCount;
private int _spiritShotCount;
private int _mpConsume;
@@ -73,6 +74,7 @@ public class Weapon extends ItemTemplate
_type1 = ItemTemplate.TYPE1_WEAPON_RING_EARRING_NECKLACE;
_type2 = ItemTemplate.TYPE2_WEAPON;
_isMagicWeapon = set.getBoolean("is_magic_weapon", false);
_isDragonWeapon = set.getBoolean("is_dragon_weapon", false);
_soulShotCount = set.getInt("soulshots", 0);
_spiritShotCount = set.getInt("spiritshots", 0);
_mpConsume = set.getInt("mp_consume", 0);
@@ -138,6 +140,14 @@ public class Weapon extends ItemTemplate
return _isMagicWeapon;
}
/**
* @return {@code true} if the weapon is a dragon weapon, {@code false} otherwise.
*/
public boolean isDragonWeapon()
{
return _isDragonWeapon;
}
/**
* @return the quantity of SoulShot used.
*/

View File

@@ -1612,7 +1612,8 @@ public class Formulas
// Dragon weapon defence stat.
final double dragonDefense;
if (attackerPlayer.isDragonWeaponEquipped())
final Weapon weapon = attacker.getActiveWeaponItem();
if ((weapon != null) && weapon.isDragonWeapon())
{
dragonDefense = target.getStat().getMul(Stat.DRAGON_WEAPON_DEFENCE, 1);
}

View File

@@ -58,6 +58,7 @@ import org.l2jmobius.gameserver.util.MathUtil;
public enum Stat
{
// HP, MP & CP
HP_LIMIT("hpLimit"),
MAX_HP("maxHp", new MaxHpFinalizer()),
MAX_MP("maxMp", new MaxMpFinalizer()),
MAX_CP("maxCp", new MaxCpFinalizer()),

View File

@@ -18,11 +18,13 @@ package org.l2jmobius.gameserver.model.stats.finalizers;
import java.util.OptionalDouble;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.data.xml.EnchantItemHPBonusData;
import org.l2jmobius.gameserver.model.actor.Creature;
import org.l2jmobius.gameserver.model.actor.Player;
import org.l2jmobius.gameserver.model.actor.instance.Pet;
import org.l2jmobius.gameserver.model.item.ItemTemplate;
import org.l2jmobius.gameserver.model.item.Weapon;
import org.l2jmobius.gameserver.model.item.instance.Item;
import org.l2jmobius.gameserver.model.itemcontainer.Inventory;
import org.l2jmobius.gameserver.model.stats.BaseStat;
@@ -63,30 +65,64 @@ public class MaxHpFinalizer implements IStatFunction
private static double defaultValue(Creature creature, Stat stat, double baseValue)
{
final double mul = creature.getStat().getMul(stat);
final double add = creature.getStat().getAdd(stat);
double addItem = 0;
double mul = creature.getStat().getMul(stat);
double add = creature.getStat().getAdd(stat);
double maxHp = (mul * baseValue) + add + creature.getStat().getMoveTypeValue(stat, creature.getMoveType());
final boolean isPlayer = creature.isPlayer();
final Inventory inv = creature.getInventory();
if (inv != null)
if (inv == null)
{
// Add maxHP bonus from items
for (Item item : inv.getPaperdollItems())
if (isPlayer)
{
addItem += item.getTemplate().getStats(stat, 0);
// Apply enchanted item bonus HP
if (item.isArmor() && item.isEnchanted())
if (creature.getActingPlayer().isCursedWeaponEquipped())
{
final int bodyPart = item.getTemplate().getBodyPart();
if ((bodyPart != ItemTemplate.SLOT_NECK) && (bodyPart != ItemTemplate.SLOT_LR_EAR) && (bodyPart != ItemTemplate.SLOT_LR_FINGER))
{
addItem += EnchantItemHPBonusData.getInstance().getHPBonus(item);
}
return Double.MAX_VALUE;
}
mul = creature.getStat().getMul(Stat.HP_LIMIT);
add = creature.getStat().getAdd(Stat.HP_LIMIT);
return Math.min(maxHp, (Config.MAX_HP * mul) + add);
}
return maxHp;
}
boolean shouldLiftLimit = false;
// Add maxHP bonus from items
for (Item item : inv.getPaperdollItems())
{
maxHp += item.getTemplate().getStats(stat, 0);
// Apply enchanted item bonus HP
if (item.isArmor() && item.isEnchanted())
{
final int bodyPart = item.getTemplate().getBodyPart();
if ((bodyPart != ItemTemplate.SLOT_NECK) && (bodyPart != ItemTemplate.SLOT_LR_EAR) && (bodyPart != ItemTemplate.SLOT_LR_FINGER))
{
maxHp += EnchantItemHPBonusData.getInstance().getHPBonus(item);
}
}
if (item.isWeapon() && item.getWeaponItem().isDragonWeapon())
{
shouldLiftLimit = true;
}
}
return (mul * baseValue) + add + addItem + creature.getStat().getMoveTypeValue(stat, creature.getMoveType());
final double hpLimit;
if (isPlayer && !shouldLiftLimit && !creature.getActingPlayer().isCursedWeaponEquipped())
{
mul = creature.getStat().getMul(Stat.HP_LIMIT);
add = creature.getStat().getAdd(Stat.HP_LIMIT);
hpLimit = (Config.MAX_HP * mul) + add;
}
else
{
hpLimit = Double.MAX_VALUE;
}
return Math.min(maxHp, hpLimit);
}
}