Addition of HpLimit effect handler.
Contributed by dontknowdontcare.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
@@ -190,6 +190,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);
|
||||
|
31
L2J_Mobius_07.0_PreludeOfWar/dist/game/data/scripts/handlers/effecthandlers/HpLimit.java
vendored
Normal file
31
L2J_Mobius_07.0_PreludeOfWar/dist/game/data/scripts/handlers/effecthandlers/HpLimit.java
vendored
Normal 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);
|
||||
}
|
||||
}
|
@@ -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 Dual Sword" additionalName="Fragment" type="Weapon">
|
||||
<!-- Antharas' Dual Sword 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 Dual Sword" 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%, 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_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%, 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_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 Dual Sword" 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 Dual Sword" 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" />
|
||||
|
@@ -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 +500, 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 +500, 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 +500, 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 +500, 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" />
|
||||
|
@@ -1120,6 +1120,7 @@
|
||||
<item id="80066" name="Fafurion Avenger" additionalName="Fragment" type="Weapon">
|
||||
<!-- A fragment of the Fafurion Knight. Can be upgraded through Lionel Hunter the Fafurion s Watcher. Enchantment, Soul Crystal, Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. -->
|
||||
<set name="icon" val="icon.fafurion_avenger_i00" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
@@ -1144,6 +1145,7 @@
|
||||
<item id="80067" name="Fafurion Fighter" additionalName="Fragment" type="Weapon">
|
||||
<!-- A fragment of the Fafurion Fighter. Can be upgraded through Lionel Hunter the Fafurion s Watcher. Enchantment, Soul Crystal, Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. -->
|
||||
<set name="icon" val="icon.fafurion_fighter_i00" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUALFIST" />
|
||||
@@ -1168,6 +1170,7 @@
|
||||
<item id="80068" name="Fafurion Stormer" additionalName="Fragment" type="Weapon">
|
||||
<!-- A fragment of the Fafurion Stormer. Can be upgraded through Lionel Hunter the Fafurion s Watcher. Enchantment, Soul Crystal, Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. -->
|
||||
<set name="icon" val="icon.fafurion_stormer_i00" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="POLE" />
|
||||
@@ -1196,6 +1199,7 @@
|
||||
<item id="80069" name="Fafurion Retributer" additionalName="Fragment" type="Weapon">
|
||||
<!-- A fragment of the Fafurion Retributer. Can be upgraded through Lionel Hunter the Fafurion s Watcher. Enchantment, Soul Crystal, Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. -->
|
||||
<set name="icon" val="icon.fafurion_retributer_i00" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
@@ -1221,6 +1225,7 @@
|
||||
<item id="80070" name="Fafurion Dual Blunt" additionalName="Fragment" type="Weapon">
|
||||
<!-- A fragment of the Fafurion Dual Blunt Weapon. Can be upgraded through Lionel Hunter the Fafurion s Watcher. Enchantment, Soul Crystal, Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. -->
|
||||
<set name="icon" val="icon.fafurion_dual_blunt_i00" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUALBLUNT" />
|
||||
@@ -1245,6 +1250,7 @@
|
||||
<item id="80071" name="Fafurion Dual Sword" additionalName="Fragment" type="Weapon">
|
||||
<!-- A fragment of the Fafurion Dual Sword. Can be upgraded through Lionel Hunter the Fafurion s Watcher. Enchantment, Soul Crystal, Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. -->
|
||||
<set name="icon" val="icon.fafurion_onehand_dual_sword_i00" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUAL" />
|
||||
@@ -1268,6 +1274,7 @@
|
||||
<item id="80072" name="Fafurion Avenger" additionalName="Standard" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_avenger_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
@@ -1296,6 +1303,7 @@
|
||||
<item id="80073" name="Fafurion Fighter" additionalName="Standard" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_fighter_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUALFIST" />
|
||||
@@ -1324,6 +1332,7 @@
|
||||
<item id="80074" name="Fafurion Stormer" additionalName="Standard" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_stormer_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="POLE" />
|
||||
@@ -1354,6 +1363,7 @@
|
||||
<item id="80075" name="Fafurion Retributer" additionalName="Standard" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s wisdom. When equipped, 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%, and Damage to Dragons +100%. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_retributer_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
@@ -1383,6 +1393,7 @@
|
||||
<item id="80076" name="Fafurion Dual Blunt" additionalName="Standard" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_dual_blunt_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUALBLUNT" />
|
||||
@@ -1411,6 +1422,7 @@
|
||||
<item id="80077" name="Fafurion Dual Sword" additionalName="Standard" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_onehand_dual_sword_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUAL" />
|
||||
@@ -1438,6 +1450,7 @@
|
||||
<item id="80078" name="Fafurion Avenger" additionalName="High-Grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Additionally enables active skills Dignity and Fafurion Rising Wave. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_avenger_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
@@ -1468,6 +1481,7 @@
|
||||
<item id="80079" name="Fafurion Fighter" additionalName="High-Grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Additionally enables active skills Dignity and Fafurion Rising Wave. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_fighter_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUALFIST" />
|
||||
@@ -1498,6 +1512,7 @@
|
||||
<item id="80080" name="Fafurion Stormer" additionalName="High-Grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Additionally enables active skills Dignity and Fafurion Rising Wave. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_stormer_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="POLE" />
|
||||
@@ -1530,6 +1545,7 @@
|
||||
<item id="80081" name="Fafurion Retributer" additionalName="High-Grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s wisdom. When equipped, 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%, and Damage to Dragons +100%. Additionally enables active skills Dignity and Fafurion Rising Wave. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_retributer_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
@@ -1561,6 +1577,7 @@
|
||||
<item id="80082" name="Fafurion Dual Blunt" additionalName="High-Grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Additionally enables active skills Dignity and Fafurion Rising Wave. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_dual_blunt_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUALBLUNT" />
|
||||
@@ -1591,6 +1608,7 @@
|
||||
<item id="80083" name="Fafurion Dual Sword" additionalName="High-Grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Additionally enables active skills Dignity and Fafurion Rising Wave. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_onehand_dual_sword_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUAL" />
|
||||
@@ -1620,6 +1638,7 @@
|
||||
<item id="80084" name="Fafurion Avenger" additionalName="Top-grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to dragons +300%. Additionally enables active skills Dignity, Fafurion Rising Wave, and Fafurion s Breath. Enchantment Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_avenger_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
@@ -1651,6 +1670,7 @@
|
||||
<item id="80085" name="Fafurion Fighter" additionalName="Top-grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to dragons +300%. Additionally enables active skills Dignity, Fafurion Rising Wave, and Fafurion s Breath. Enchantment Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_fighter_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUALFIST" />
|
||||
@@ -1682,6 +1702,7 @@
|
||||
<item id="80086" name="Fafurion Stormer" additionalName="Top-grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to dragons +300%. Additionally enables active skills Dignity, Fafurion Rising Wave, and Fafurion s Breath. Enchantment Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_stormer_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="POLE" />
|
||||
@@ -1715,6 +1736,7 @@
|
||||
<item id="80087" name="Fafurion Retributer" additionalName="Top-grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s wisdom. When equipped, 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%, and Damage to dragons +300%. Additionally enables active skills Dignity, Fafurion Rising Wave, and Fafurion s Breath. Enchantment Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_retributer_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
@@ -1747,6 +1769,7 @@
|
||||
<item id="80088" name="Fafurion Dual Blunt" additionalName="Top-grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to dragons +300%. Additionally enables active skills Dignity, Fafurion Rising Wave, and Fafurion s Breath. Enchantment Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_dual_blunt_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUALBLUNT" />
|
||||
@@ -1778,6 +1801,7 @@
|
||||
<item id="80089" name="Fafurion Dual Sword" additionalName="Top-grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to dragons +300%. Additionally enables active skills Dignity, Fafurion Rising Wave, and Fafurion s Breath. Enchantment Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_onehand_dual_sword_i01" />
|
||||
<set name="is_dragon_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="weapon_type" val="DUAL" />
|
||||
|
@@ -151,6 +151,7 @@
|
||||
<item id="80315" name="Fafurion Dual Dagger" additionalName="Fragment" type="Weapon">
|
||||
<!-- A fragment of the Fafurion Dual Dagger. Can be upgraded through Lionel Hunter the Fafurion s Watcher. Enchantment, Soul Crystal, Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. -->
|
||||
<set name="icon" val="icon.fafurion_dual_dagger_i00" />
|
||||
<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" />
|
||||
@@ -176,6 +177,7 @@
|
||||
<item id="80316" name="Fafurion Dual Dagger" additionalName="Standard" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_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" />
|
||||
@@ -206,6 +208,7 @@
|
||||
<item id="80317" name="Fafurion Dual Dagger" additionalName="High-Grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +100%. Additionally enables active skills Dignity and Fafurion Rising Wave. Can be upgraded through Lionel Hunter the Fafurion s Watcher. No Enchantment Augment, Crystallization, Appearance Modification, or Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_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" />
|
||||
@@ -238,6 +241,7 @@
|
||||
<item id="80318" name="Fafurion Dual Dagger" additionalName="Top-grade" type="Weapon">
|
||||
<!-- A weapon bestowed with the dragon s power. When equipped, 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%, and Damage to Dragons +300%. Additionally enables active skills Dignity, Fafurion Rising Wave, and Fafurion s Breath. Enchantment Augment, Crystallization, Appearance Modification, Attribute Assignment allowed. Can bestow 1 special Soul Crystal. -->
|
||||
<set name="icon" val="icon.fafurion_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" />
|
||||
|
@@ -1204,6 +1204,7 @@
|
||||
<item id="80698" name="Blood-thirsty Zariche Shaper" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_shaper_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DAGGER" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1228,6 +1229,7 @@
|
||||
<item id="80699" name="Blood-thirsty Zariche Cutter" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_cutter_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
|
@@ -4,6 +4,7 @@
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_slasher_1" />
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
<set name="immediate_effect" val="true" />
|
||||
@@ -27,6 +28,7 @@
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_onehand_blunt_1" />
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
<set name="immediate_effect" val="true" />
|
||||
@@ -49,6 +51,7 @@
|
||||
<item id="80702" name="Blood-thirsty Zariche Fighter" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_fist_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALFIST" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -73,6 +76,7 @@
|
||||
<item id="80703" name="Blood-thirsty Zariche Stormer" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_spear_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="POLE" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -100,6 +104,7 @@
|
||||
<item id="80704" name="Blood-thirsty Zariche Thrower" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_bow_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BOW" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -124,6 +129,7 @@
|
||||
<item id="80705" name="Blood-thirsty Zariche Shooter" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_crossbow_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="TWOHANDCROSSBOW" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -148,6 +154,7 @@
|
||||
<item id="80706" name="Blood-thirsty Zariche Buster" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_onehane_magic_sword_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -171,6 +178,7 @@
|
||||
<item id="80707" name="Blood-thirsty Zariche Caster" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_onehand_magic_blunt_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -196,6 +204,7 @@
|
||||
<item id="80708" name="Blood-thirsty Zariche Retributer" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_twohand_magic_blunt_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -221,6 +230,7 @@
|
||||
<item id="80709" name="Blood-thirsty Zariche Dualsword" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_dual_sword_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUAL" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -244,6 +254,7 @@
|
||||
<item id="80710" name="Blood-thirsty Zariche Dual Dagger" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_dual_dagger_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALDAGGER" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -268,6 +279,7 @@
|
||||
<item id="80711" name="Blood-thirsty Zariche Dual Blunt Weapon" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Zariche. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.zariche_dual_blunt_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALBLUNT" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
|
@@ -772,6 +772,7 @@
|
||||
<item id="80859" name="Blood-thirsty Akamanah Shaper" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_shaper_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DAGGER" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -796,6 +797,7 @@
|
||||
<item id="80860" name="Blood-thirsty Akamanah Cutter" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_cutter_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -819,6 +821,7 @@
|
||||
<item id="80861" name="Blood-thirsty Akamanah Slasher" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_slasher_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -842,6 +845,7 @@
|
||||
<item id="80862" name="Blood-thirsty Akamanah Avenger" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_onehand_blunt_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -865,6 +869,7 @@
|
||||
<item id="80863" name="Blood-thirsty Akamanah Fighter" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_fist_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALFIST" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -889,6 +894,7 @@
|
||||
<item id="80864" name="Blood-thirsty Akamanah Stormer" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_spear_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="POLE" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -916,6 +922,7 @@
|
||||
<item id="80865" name="Blood-thirsty Akamanah Thrower" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_bow_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BOW" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -940,6 +947,7 @@
|
||||
<item id="80866" name="Blood-thirsty Akamanah Shooter" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_crossbow_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="TWOHANDCROSSBOW" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -964,6 +972,7 @@
|
||||
<item id="80867" name="Blood-thirsty Akamanah Buster" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_onehane_magic_sword_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -987,6 +996,7 @@
|
||||
<item id="80868" name="Blood-thirsty Akamanah Caster" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_onehand_magic_blunt_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1012,6 +1022,7 @@
|
||||
<item id="80869" name="Blood-thirsty Akamanah Retributer" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_twohand_magic_blunt_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1037,6 +1048,7 @@
|
||||
<item id="80870" name="Blood-thirsty Akamanah Dualsword" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_dual_sword_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUAL" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1060,6 +1072,7 @@
|
||||
<item id="80871" name="Blood-thirsty Akamanah Dual Dagger" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_dual_dagger_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALDAGGER" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1084,6 +1097,7 @@
|
||||
<item id="80872" name="Blood-thirsty Akamanah Dual Blunt" type="Weapon">
|
||||
<!-- Weapon born from Demonic Sword Akamanah. Upgrade through Kaysia in the Town of Oren. Max HP can increase by more than 150,000. Cannot be crystallized, enchanted, augmented, changed or assigned an attribute. -->
|
||||
<set name="icon" val="icon.aka_manaf_dual_blunt_1" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALBLUNT" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1108,6 +1122,7 @@
|
||||
<item id="80873" name="Blood-stained Zariche Shaper" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_shaper_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DAGGER" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1138,6 +1153,7 @@
|
||||
<item id="80874" name="Blood-stained Zariche Cutter" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_cutter_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1167,6 +1183,7 @@
|
||||
<item id="80875" name="Blood-stained Zariche Slasher" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_slasher_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1196,6 +1213,7 @@
|
||||
<item id="80876" name="Blood-stained Zariche Avenger" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_onehand_blunt_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1225,6 +1243,7 @@
|
||||
<item id="80877" name="Blood-stained Zariche Fighter" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_fist_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALFIST" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1255,6 +1274,7 @@
|
||||
<item id="80878" name="Blood-stained Zariche Stormer" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_spear_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="POLE" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1286,6 +1306,7 @@
|
||||
<item id="80879" name="Blood-stained Zariche Thrower" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_bow_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BOW" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1316,6 +1337,7 @@
|
||||
<item id="80880" name="Blood-stained Zariche Shooter" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_crossbow_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="TWOHANDCROSSBOW" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1346,6 +1368,7 @@
|
||||
<item id="80881" name="Blood-stained Zariche Buster" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. PvP Damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, P. Critical Rate +100, M. Skill Critical Rate +30%, M. Skill Critical Damage +30%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_onehane_magic_sword_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1375,6 +1398,7 @@
|
||||
<item id="80882" name="Blood-stained Zariche Caster" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. PvP Damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, P. Critical Rate +100, M. Skill Critical Rate +30%, M. Skill Critical Damage +30%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_onehand_magic_blunt_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1405,6 +1429,7 @@
|
||||
<item id="80883" name="Blood-stained Zariche Retributer" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. PvP Damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, P. Critical Rate +100, M. Skill Critical Rate +30%, M. Skill Critical Damage +30%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_twohand_magic_blunt_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1436,6 +1461,7 @@
|
||||
<item id="80884" name="Blood-stained Zariche Dualsword" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_dual_sword_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUAL" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1465,6 +1491,7 @@
|
||||
<item id="80885" name="Blood-stained Zariche Dual Dagger" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_dual_dagger_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALDAGGER" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1495,6 +1522,7 @@
|
||||
<item id="80886" name="Blood-stained Zariche Dual Blunt" type="Weapon">
|
||||
<!-- A Zariche weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.zariche_dual_blunt_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALBLUNT" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1525,6 +1553,7 @@
|
||||
<item id="80887" name="Blood-stained Akamanah Shaper" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_shaper_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DAGGER" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1555,6 +1584,7 @@
|
||||
<item id="80888" name="Blood-stained Akamanah Cutter" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_cutter_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1584,6 +1614,7 @@
|
||||
<item id="80889" name="Blood-stained Akamanah Slasher" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_slasher_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1613,6 +1644,7 @@
|
||||
<item id="80890" name="Blood-stained Akamanah Avenger" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_onehand_blunt_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1642,6 +1674,7 @@
|
||||
<item id="80891" name="Blood-stained Akamanah Fighter" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_fist_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALFIST" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1672,6 +1705,7 @@
|
||||
<item id="80892" name="Blood-stained Akamanah Stormer" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_spear_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="POLE" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1703,6 +1737,7 @@
|
||||
<item id="80893" name="Blood-stained Akamanah Thrower" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_bow_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BOW" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1733,6 +1768,7 @@
|
||||
<item id="80894" name="Blood-stained Akamanah Shooter" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_crossbow_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="TWOHANDCROSSBOW" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1763,6 +1799,7 @@
|
||||
<item id="80895" name="Blood-stained Akamanah Buster" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. PvP Damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, P. Critical Rate +100, M. Skill Critical Rate +30%, M. Skill Critical Damage +30%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_onehane_magic_sword_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="SWORD" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1792,6 +1829,7 @@
|
||||
<item id="80896" name="Blood-stained Akamanah Caster" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. PvP Damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, P. Critical Rate +100, M. Skill Critical Rate +30%, M. Skill Critical Damage +30%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_onehand_magic_blunt_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="rhand" />
|
||||
@@ -1822,6 +1860,7 @@
|
||||
<item id="80897" name="Blood-stained Akamanah Retributer" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. PvP Damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, P. Critical Rate +100, M. Skill Critical Rate +30%, M. Skill Critical Damage +30%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_twohand_magic_blunt_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="BLUNT" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1853,6 +1892,7 @@
|
||||
<item id="80898" name="Blood-stained Akamanah Dualsword" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_dual_sword_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUAL" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
@@ -1882,6 +1922,7 @@
|
||||
<item id="80899" name="Blood-stained Akamanah Dual Dagger" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_dual_dagger_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALDAGGER" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
|
@@ -3,6 +3,7 @@
|
||||
<item id="80900" name="Blood-stained Akamanah Dual Blunt" type="Weapon">
|
||||
<!-- An Akamanah weapon stained with the madness of blood. 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%. Use Active Skills Soul's Insanity, Soul's Confinement, Soul's Release. Max HP can increase up to 150,000. Enchantment, Augment, Crystallization, Appearance Modification, Attribute Assignment not allowed. Can bestow 1 Special Soul Crystal. -->
|
||||
<set name="icon" val="icon.aka_manaf_dual_blunt_2" />
|
||||
<set name="is_cursed_weapon" val="true"/>
|
||||
<set name="default_action" val="EQUIP" />
|
||||
<set name="weapon_type" val="DUALBLUNT" />
|
||||
<set name="bodypart" val="lrhand" />
|
||||
|
@@ -161,6 +161,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.
|
||||
|
Reference in New Issue
Block a user