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

@@ -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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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' Fragment. Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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 Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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 Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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 Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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 Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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 Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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 Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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 Fragment. Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted 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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Casting Speed by 300, M. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Casting Speed by 300, M. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Casting Speed by 300, M. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1313,6 +1354,7 @@
<item id="36458" name="Lindvior Shaper" additionalName="Standard" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1342,6 +1384,7 @@
<item id="36459" name="Lindvior Thrower" additionalName="Standard" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1372,6 +1415,7 @@
<item id="36460" name="Lindvior Slasher" additionalName="Standard" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1400,6 +1444,7 @@
<item id="36461" name="Lindvior Caster" additionalName="Standard" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1430,6 +1475,7 @@
<item id="36462" name="Lindvior Cutter" additionalName="Standard" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1458,6 +1504,7 @@
<item id="36463" name="Lindvior Shooter" additionalName="Standard" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1488,6 +1535,7 @@
<item id="36464" name="Lindvior Dual Dagger" additionalName="Standard" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1517,6 +1565,7 @@
<item id="36465" name="Antharas Shaper" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1549,6 +1598,7 @@
<item id="36466" name="Antharas Slasher" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1580,6 +1630,7 @@
<item id="36467" name="Antharas Thrower" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1613,6 +1664,7 @@
<item id="36468" name="Antharas Buster" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1645,6 +1697,7 @@
<item id="36469" name="Antharas Cutter" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1676,6 +1729,7 @@
<item id="36470" name="Antharas Stormer" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1709,6 +1763,7 @@
<item id="36471" name="Antharas Fighter" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1741,6 +1796,7 @@
<item id="36472" name="Antharas Avenger" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1773,6 +1829,7 @@
<item id="36473" name="Antharas Dual Blunt Weapon" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1805,6 +1862,7 @@
<item id="36474" name="Antharas Dualsword" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through the Watcher of Antharas Theodric. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1837,6 +1895,7 @@
<item id="36475" name="Valakas Shaper" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1869,6 +1928,7 @@
<item id="36476" name="Valakas Cutter" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1900,6 +1960,7 @@
<item id="36477" name="Valakas Slasher" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1931,6 +1992,7 @@
<item id="36478" name="Valakas Thrower" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1964,6 +2026,7 @@
<item id="36479" name="Valakas Buster" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Casting Speed by 300, M. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -1996,6 +2059,7 @@
<item id="36480" name="Valakas Caster" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Casting Speed by 300, M. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -2029,6 +2093,7 @@
<item id="36481" name="Valakas Retributer" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Valakas Watchman Klein. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Casting Speed by 300, M. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -2063,6 +2128,7 @@
<item id="36482" name="Lindvior Shaper" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -2095,6 +2161,7 @@
<item id="36483" name="Lindvior Thrower" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -2128,6 +2195,7 @@
<item id="36484" name="Lindvior Slasher" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Attack Speed by 300, P. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -2159,6 +2227,7 @@
<item id="36485" name="Lindvior Caster" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. PVP damage + 15%, HP/MP/CP + 30%, Casting Spd. + 300, M. Critical Rate + 100, and additional damage on dragons + 100%. <Active>. Protection: For 2 min., your gain Speed + 100 and resistance to all debuffs. Skill usage requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be equipped in the Olympiad or Ceremony of Chaos, appearance-modified, enchanted, bestowed an attribute, or enchanted with a 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" />
@@ -2192,6 +2261,7 @@
<item id="36486" name="Lindvior Cutter" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Casting Speed by 300, M. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -2223,6 +2293,7 @@
<item id="36487" name="Lindvior Shooter" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Casting Speed by 300, M. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -2256,6 +2327,7 @@
<item id="36488" name="Lindvior Dual Dagger" additionalName="High-grade" type="Weapon">
<!-- Can be upgraded to a higher grade through Aden's Wizard Jenna. Requires a Dragon Claw and various materials. <Passive>. Increases PVP damage by 15%, HP/MP/CP by 30%, Casting Speed by 300, M. Critical Rate by 100 and additional damage on dragons by 100%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. Cannot be worn in the Olympiad/Ceremony of Chaos. Its appearance cannot be modified. Cannot be crystallized, enchanted or assigned an attribute. -->
<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" />
@@ -2288,6 +2360,7 @@
<item id="36489" name="Antharas Shaper" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2321,6 +2394,7 @@
<item id="36490" name="Antharas Slasher" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2353,6 +2427,7 @@
<item id="36491" name="Antharas Thrower" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2387,6 +2462,7 @@
<item id="36492" name="Antharas Buster" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Casting Speed by 1999, M. Critical Rate by 500, and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2420,6 +2496,7 @@
<item id="36493" name="Antharas Cutter" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2452,6 +2529,7 @@
<item id="36494" name="Antharas Stormer" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2486,6 +2564,7 @@
<item id="36495" name="Antharas Fighter" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2519,6 +2598,7 @@
<item id="36496" name="Antharas Avenger" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2552,6 +2632,7 @@
<item id="36497" name="Antharas Dual Blunt Weapon" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2585,6 +2666,7 @@
<item id="36498" name="Antharas Dualsword" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Antharas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Antharas' Tail Strike: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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" />
@@ -2618,6 +2700,7 @@
<item id="36499" name="Valakas Shaper" additionalName="Top-grade" type="Weapon">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Valakas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Valakas' Meteor: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Valakas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Valakas' Meteor: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Valakas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Valakas' Meteor: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Valakas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Valakas' Meteor: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Casting Speed by 1999, M. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Valakas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Valakas' Meteor: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Casting Speed by 1999, M. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Valakas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Valakas' Meteor: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Casting Speed by 1999, M. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Valakas' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Valakas' Meteor: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Lindvior' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Lindvior's Wing Movement: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Lindvior' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Lindvior's Wing Movement: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Lindvior' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Lindvior's Wing Movement: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1999, M. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Lindvior' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Lindvior's Wing Movement: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Lindvior' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Lindvior's Wing Movement: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Lindvior' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Lindvior's Wing Movement: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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">
<!-- Dragon's Weapon (Top-grade). <Passive>. Increases PVP damage by 30%, HP/MP by 100%, CP by 200%, Attack Speed by 1500, P. Critical Rate by 500 and additional damage on dragons by 300%. <Used Skill>. 1. Protection: Your movement speed increases by 100 and you become immune to all debuffs for 2 min. Using the skill requires 1 unit of Dragon Blood. Cooldown is 10 min. 2. Lindvior' Breath: Decreases the Attack/Casting/Movement Speed of nearby enemies by 90% and gradually makes their bodies rigid, paralyzing them for 10 seconds eventually. Using the skill requires 1 unit of Dragon Blood. Cooldown is 5 min. 3. Lindvior's Wing Movement: Depletes CP of all enemies nearby. Using the skill consumes 1 unit of Dragon Blood. Cooldown is 5 min. Cannot be used in the Olympiad or Ceremony of Chaos. Cannot be enchanted, crystallized, modified, or assigned an attribute. -->
<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.