Addition of HpLimit effect handler.
Contributed by dontknowdontcare.
This commit is contained in:
@@ -361,6 +361,10 @@ MaxMAtkSpeed = 1999
|
||||
# Default: 250
|
||||
MaxEvasion = 250
|
||||
|
||||
# Maximum character HP.
|
||||
# Default: 150000
|
||||
MaxHP = 150000
|
||||
|
||||
# Minimum and Maximum Abnormal State Success Rate.
|
||||
# This affect all skills/effects chances, except in skills where minChance or maxChance parameters are defined.
|
||||
# Default: H5 minimum of 10% and maximum of 90%.
|
||||
|
@@ -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();
|
||||
}
|
||||
}
|
@@ -191,6 +191,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_08.2_Homunculus/dist/game/data/scripts/handlers/effecthandlers/HpLimit.java
vendored
Normal file
31
L2J_Mobius_08.2_Homunculus/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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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 Buster Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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 Weapon Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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 Swords' fragment. Max HP can increase by more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Theodric in the Dragon Valley to enhance it to an Antharas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Klein in the Forge of the Gods to enhance it to a Valakas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Klein in the Forge of the Gods to enhance it to a Valakas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Klein in the Forge of the Gods to enhance it to a Valakas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Klein in the Forge of the Gods to enhance it to a Valakas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Klein in the Forge of the Gods to enhance it to a Valakas' standard weapon. -->
|
||||
<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 Buster Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Klein in the Forge of the Gods to enhance it to a Valakas' standard weapon. -->
|
||||
<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. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Klein in the Forge of the Gods to enhance it to a Valakas' standard weapon. -->
|
||||
<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 Shaper Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Jenna in Rune to enhance it to a Lindvior's standard weapon. -->
|
||||
<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 Thrower Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Jenna in Rune to enhance it to a Lindvior's standard weapon. -->
|
||||
<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 Slasher Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Jenna in Rune to enhance it to a Lindvior's standard weapon. -->
|
||||
<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 Caster Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Jenna in Rune to enhance it to a Lindvior's standard weapon. -->
|
||||
<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 Cutter Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Jenna in Rune to enhance it to a Lindvior's standard weapon. -->
|
||||
<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 Shooter Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Jenna in Rune to enhance it to a Lindvior's standard weapon. -->
|
||||
<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 Dual Daggers Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Jenna in Rune to enhance it to a Lindvior's standard weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be crystallized, enchanted, augmented, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a high-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a high-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a high-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a high-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a high-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a high-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a high-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a high-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a high-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a high-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a high-grade Lindvior's weapon. -->
|
||||
<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 power of the dragons. PvP Damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a high-grade Lindvior's weapon. -->
|
||||
<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 power of the dragons. PvP Damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a high-grade Lindvior's weapon. -->
|
||||
<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 power of the dragons. PvP Damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be enchanted, crystallized, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a high-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a top-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a top-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a top-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Cannot be crystallized, enchanted, augmented, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a high-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a top-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a top-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a top-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a top-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a top-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Enables the Dignity and Antharas' Lash skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 1 special Soul Crystal. <Enhancing>. Take the weapon and Dragon Claw to Theodric in the Dragon Valley to enhance it to a top-grade Antharas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Allows to use Dignity and Valakas' Bite. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a top-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Allows to use Dignity and Valakas' Bite. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a top-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Allows to use Dignity and Valakas' Bite. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a top-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage on dragons +100%. Allows to use Dignity and Valakas' Bite. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a top-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Valakas' Bite skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a top-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Valakas' Bite skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a top-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Valakas' Bite skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Klein in the Forge of the Gods to enhance it to a top-grade Valakas' weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Lindvior's Wingbeat skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a top-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Lindvior's Wingbeat skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a top-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Lindvior's Wingbeat skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a top-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +100, M. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Lindvior's Wingbeat skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a top-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Lindvior's Wingbeat skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a top-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Lindvior's Wingbeat skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a top-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Lindvior's Wingbeat skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Jenna in Rune to enhance it to a top-grade Lindvior's weapon. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 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%, Critical Rate for standard attacks +500, M. Skill Critical Rate +500, M. Skill Critical Damage +50%, damage to dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. The item's appearance cannot be modified. Cannot be crystallized, enchanted, augmented, or assigned an attribute. 1 special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Enables the Dignity, Antharas' Lash, and Antharas' Breath skills. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be crystallized, enchanted, augmented, or assigned an attribute. You can insert 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Valakas' Bite and Valakas' Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Valakas' Bite and Valakas' Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Valakas' Bite and Valakas' Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Valakas' Bite and Valakas' Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, M. Skill Critical Rate +500, M. Skill Critical Damage +50%, damage to dragons +300%. Enables the Dignity, Valakas' Bite, and Valakas' Breath skills. Max HP can be more than 150,000. The item's appearance cannot be modified. Cannot be enchanted, crystallized, assigned an attribute. 1 special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, M. Skill Critical Rate +500, M. Skill Critical Damage +50%, damage to dragons +300%. Enables the Dignity, Valakas' Bite, and Valakas' Breath skills. Max HP can be more than 150,000. The item's appearance cannot be modified. Cannot be enchanted, crystallized, assigned an attribute. 1 special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, M. Skill Critical Rate +500, M. Skill Critical Damage +50%, damage to dragons +300%. Enables the Dignity, Valakas' Bite, and Valakas' Breath skills. Max HP can be more than 150,000. The item's appearance cannot be modified. Cannot be enchanted, crystallized, assigned an attribute. 1 special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Lindvior's Wingbeat and Lindvior's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Lindvior's Wingbeat and Lindvior's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Lindvior's Wingbeat and Lindvior's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, M. Skill Critical Rate +500, M. Skill Critical Damage +50%, damage to dragons +300%. Enables the Dignity, Lindvior's Wingbeat, and Lindvior's Breath skills. Max HP can be more than 150,000. The item's appearance cannot be modified. Cannot be enchanted, crystallized, or assigned an attribute. 1 special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Lindvior's Wingbeat and Lindvior's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Lindvior's Wingbeat and Lindvior's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, damage on dragons +300%. Allows to use the Dignity, Lindvior's Wingbeat and Lindvior's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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" />
|
||||
|
@@ -1176,6 +1176,7 @@
|
||||
<item id="80066" name="Fafurion Avenger" additionalName="Fragment" type="Weapon">
|
||||
<!-- Fafurion Avenger Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Lionel Hunter in Heine to get a Fafurion's standard weapon. -->
|
||||
<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" />
|
||||
@@ -1200,6 +1201,7 @@
|
||||
<item id="80067" name="Fafurion Fighter" additionalName="Fragment" type="Weapon">
|
||||
<!-- Fafurion Fighter Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Lionel Hunter in Heine to get a Fafurion's standard weapon. -->
|
||||
<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" />
|
||||
@@ -1224,6 +1226,7 @@
|
||||
<item id="80068" name="Fafurion Stormer" additionalName="Fragment" type="Weapon">
|
||||
<!-- Fafurion Stormer Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Lionel Hunter in Heine to get a Fafurion's standard weapon. -->
|
||||
<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" />
|
||||
@@ -1252,6 +1255,7 @@
|
||||
<item id="80069" name="Fafurion Retributer" additionalName="Fragment" type="Weapon">
|
||||
<!-- Fafurion Retributer Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Lionel Hunter in Heine to get a Fafurion's standard weapon. -->
|
||||
<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" />
|
||||
@@ -1277,6 +1281,7 @@
|
||||
<item id="80070" name="Fafurion Dual Blunt" additionalName="Fragment" type="Weapon">
|
||||
<!-- Fafurion Dual Blunt Weapon Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Lionel Hunter in Heine to get a Fafurion's standard weapon. -->
|
||||
<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" />
|
||||
@@ -1301,6 +1306,7 @@
|
||||
<item id="80071" name="Fafurion Dual Sword" additionalName="Fragment" type="Weapon">
|
||||
<!-- Fafurion Dual Swords Fragment. Max HP can be more than 150,000. Cannot be enchanted, augmented, crystallized, appearance modified, assigned an attribute. <Enhancing>. Take the fragment and Dragon Claw to Lionel Hunter in Heine to get a Fafurion's standard weapon. -->
|
||||
<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" />
|
||||
@@ -1324,6 +1330,7 @@
|
||||
<item id="80072" name="Fafurion 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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a high-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1352,6 +1359,7 @@
|
||||
<item id="80073" name="Fafurion 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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a high-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1380,6 +1388,7 @@
|
||||
<item id="80074" name="Fafurion 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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a high-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1410,6 +1419,7 @@
|
||||
<item id="80075" name="Fafurion 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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +30%, M. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a high-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1439,6 +1449,7 @@
|
||||
<item id="80076" name="Fafurion Dual Blunt" additionalName="Standard" type="Weapon">
|
||||
<!-- A weapon imbued with the power of the dragons. PvP damage +30%, Max HP/ MP/ CP +30%, Atk. Spd. +30%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a high-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1467,6 +1478,7 @@
|
||||
<item id="80077" name="Fafurion 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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a high-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1494,6 +1506,7 @@
|
||||
<item id="80078" name="Fafurion 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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Fafurion's Rising Wave skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a top-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1525,6 +1538,7 @@
|
||||
<item id="80079" name="Fafurion 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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Fafurion's Rising Wave skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a top-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1556,6 +1570,7 @@
|
||||
<item id="80080" name="Fafurion 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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Fafurion's Rising Wave skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a top-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1589,6 +1604,7 @@
|
||||
<item id="80081" name="Fafurion 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%, Critical Rate for standard attacks +100, M. Skill Critical Rate +30%, M. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Fafurion's Rising Wave skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a top-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1621,6 +1637,7 @@
|
||||
<item id="80082" name="Fafurion Dual Blunt" 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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Fafurion's Rising Wave skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a top-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1652,6 +1669,7 @@
|
||||
<item id="80083" name="Fafurion 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%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, damage to dragons +100%. Enables the Dignity and Fafurion's Rising Wave skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, given another appearance, or assigned an attribute. 1 special Soul Crystal can be inserted. <Enhancing>. Take the weapon and Dragon Claw to Lionel Hunter in Heine to get a top-grade Fafurion's weapon. -->
|
||||
<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" />
|
||||
@@ -1682,6 +1700,7 @@
|
||||
<item id="80084" name="Fafurion 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, and Damage to dragons +300%. Additionally, allows to use Dignity, Fafurion Rising Wave and Fafurion's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, imbued with an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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" />
|
||||
@@ -1714,6 +1733,7 @@
|
||||
<item id="80085" name="Fafurion 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, and Damage to dragons +300%. Additionally, allows to use Dignity, Fafurion Rising Wave and Fafurion's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, imbued with an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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" />
|
||||
@@ -1746,6 +1766,7 @@
|
||||
<item id="80086" name="Fafurion 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, and Damage to dragons +300%. Additionally, allows to use Dignity, Fafurion Rising Wave and Fafurion's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, imbued with an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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" />
|
||||
@@ -1780,6 +1801,7 @@
|
||||
<item id="80087" name="Fafurion Retributer" additionalName="Top-grade" type="Weapon">
|
||||
<!-- A weapon imbued with the power of the dragons. PvP Damage +50%, Max HP/ MP/ CP +100%, Casting Spd. +100%, Critical Rate for standard attacks +500, M. Skill Critical Rate +50%, M. Skill Critical Damage +50%, and Damage to dragons +300%. Additionally, allows to use Dignity, Fafurion Rising Wave and Fafurion's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, imbued with an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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" />
|
||||
@@ -1813,6 +1835,7 @@
|
||||
<item id="80088" name="Fafurion Dual Blunt" 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, and Damage to dragons +300%. Additionally, allows to use Dignity, Fafurion Rising Wave and Fafurion's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, imbued with an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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" />
|
||||
@@ -1845,6 +1868,7 @@
|
||||
<item id="80089" name="Fafurion 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%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, and Damage to dragons +300%. Additionally, allows to use Dignity, Fafurion Rising Wave and Fafurion's Breath skills. Max HP can be more than 150,000. Cannot be enchanted, crystallized, appearance modified, imbued with an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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 Daggers. Can be upgraded through Lionel Hunter, the Fafurion's Watcher. Cannot be assigned an attribute, appearance modified, crystallized, enchanted, augmented or soul crystal enhanced. -->
|
||||
<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 imbued with the dragon's power. PvP Damage +30%. Max HP/ MP/ CP +30%, Atk. Spd. +30%, Critical Rate for standard attacks +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. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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 imbued with the dragon's power. PvP Damage +30%. Max HP/ MP/ CP +30%, Atk. Spd. +30%, Critical Rate for standard attacks +100, P. Skill Critical Rate +30%, P. Skill Critical Damage +30%, and damage to Dragons +100%. Additionally, allows to use the Dignity and Fafurion Rising Wave skills. Can be upgraded through Lionel Hunter, the Fafurion's Watcher. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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 imbued with the dragon's power. PvP Damage +50%, Max HP/ MP/ CP +100%, Atk. Spd. +100%, Critical Rate for standard attacks +500, P. Skill Critical Rate +50%, P. Skill Critical Damage +50%, and Damage to Dragons +300%. Additionally, allows to use the Dignity, Fafurion Rising Wave, and Fafurion s Breath skills. Cannot be enchanted, crystallized, appearance modified, assigned an attribute. One special Soul Crystal can be inserted. -->
|
||||
<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" />
|
||||
|
@@ -1273,6 +1273,7 @@
|
||||
<item id="80698" name="Blood-thirsty Zariche Shaper" type="Weapon">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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" />
|
||||
@@ -1297,6 +1298,7 @@
|
||||
<item id="80699" name="Blood-thirsty Zariche Cutter" type="Weapon">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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 @@
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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 @@
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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">
|
||||
<!-- A weapon created from Demonic Sword Zariche. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Zariche's Blood to Kaysia in Oren to get a Bloodstained Zariche weapon. -->
|
||||
<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" />
|
||||
|
@@ -782,6 +782,7 @@
|
||||
<item id="80859" name="Blood-thirsty Akamanah Shaper" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -806,6 +807,7 @@
|
||||
<item id="80860" name="Blood-thirsty Akamanah Cutter" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -829,6 +831,7 @@
|
||||
<item id="80861" name="Blood-thirsty Akamanah Slasher" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -852,6 +855,7 @@
|
||||
<item id="80862" name="Blood-thirsty Akamanah Avenger" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -875,6 +879,7 @@
|
||||
<item id="80863" name="Blood-thirsty Akamanah Fighter" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -899,6 +904,7 @@
|
||||
<item id="80864" name="Blood-thirsty Akamanah Stormer" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -926,6 +932,7 @@
|
||||
<item id="80865" name="Blood-thirsty Akamanah Thrower" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -950,6 +957,7 @@
|
||||
<item id="80866" name="Blood-thirsty Akamanah Shooter" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -974,6 +982,7 @@
|
||||
<item id="80867" name="Blood-thirsty Akamanah Buster" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -997,6 +1006,7 @@
|
||||
<item id="80868" name="Blood-thirsty Akamanah Caster" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -1022,6 +1032,7 @@
|
||||
<item id="80869" name="Blood-thirsty Akamanah Retributer" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -1047,6 +1058,7 @@
|
||||
<item id="80870" name="Blood-thirsty Akamanah Dualsword" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -1070,6 +1082,7 @@
|
||||
<item id="80871" name="Blood-thirsty Akamanah Dual Dagger" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -1094,6 +1107,7 @@
|
||||
<item id="80872" name="Blood-thirsty Akamanah Dual Blunt" type="Weapon">
|
||||
<!-- A weapon created from Blood Sword Akamanah. Max HP can be more than 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, enchanted, or enhanced with a soul crystal. <Enhancing>. Take the weapon and Akamanah's Blood to Kaysia in Oren to get a Bloodstained Akamanah weapon. -->
|
||||
<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" />
|
||||
@@ -1118,6 +1132,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1150,6 +1165,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1181,6 +1197,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1212,6 +1229,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1243,6 +1261,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1275,6 +1294,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1308,6 +1328,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1340,6 +1361,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1372,6 +1394,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1403,6 +1426,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1435,6 +1459,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1468,6 +1493,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1499,6 +1525,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1531,6 +1558,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1563,6 +1591,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1595,6 +1624,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1626,6 +1656,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1657,6 +1688,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1688,6 +1720,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1720,6 +1753,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1753,6 +1787,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1785,6 +1820,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1817,6 +1853,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1848,6 +1885,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1880,6 +1918,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1913,6 +1952,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
@@ -1944,6 +1984,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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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%. Enables the Soul's Insanity, Soul's Confinement, and Soul's Release skills. Max HP can increase up to 150,000. Its appearance cannot be changed. Cannot be assigned an attribute, crystallized, augmented, or enchanted. You can insert 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" />
|
||||
|
@@ -162,6 +162,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.
|
||||
|
@@ -217,6 +217,7 @@ public class Config
|
||||
public static int MAX_PATK_SPEED;
|
||||
public static int MAX_MATK_SPEED;
|
||||
public static int MAX_EVASION;
|
||||
public static int MAX_HP;
|
||||
public static int MIN_ABNORMAL_STATE_SUCCESS_RATE;
|
||||
public static int MAX_ABNORMAL_STATE_SUCCESS_RATE;
|
||||
public static long MAX_SP;
|
||||
@@ -1835,6 +1836,7 @@ public class Config
|
||||
MAX_PATK_SPEED = characterConfig.getInt("MaxPAtkSpeed", 1500);
|
||||
MAX_MATK_SPEED = characterConfig.getInt("MaxMAtkSpeed", 1999);
|
||||
MAX_EVASION = characterConfig.getInt("MaxEvasion", 250);
|
||||
MAX_HP = characterConfig.getInt("MaxHP", 150000);
|
||||
MIN_ABNORMAL_STATE_SUCCESS_RATE = characterConfig.getInt("MinAbnormalStateSuccessRate", 10);
|
||||
MAX_ABNORMAL_STATE_SUCCESS_RATE = characterConfig.getInt("MaxAbnormalStateSuccessRate", 90);
|
||||
MAX_SP = characterConfig.getLong("MaxSp", 50000000000L) >= 0 ? characterConfig.getLong("MaxSp", 50000000000L) : Long.MAX_VALUE;
|
||||
|
@@ -778,8 +778,6 @@ public class Player extends Playable
|
||||
private int _cursedWeaponEquippedId = 0;
|
||||
private boolean _combatFlagEquippedId = false;
|
||||
|
||||
private boolean _isDragonWeaponEquipped = false;
|
||||
|
||||
private boolean _canRevive = true;
|
||||
private int _reviveRequested = 0;
|
||||
private double _revivePower = 0;
|
||||
@@ -11607,16 +11605,6 @@ public class Player extends Playable
|
||||
return _cursedWeaponEquippedId;
|
||||
}
|
||||
|
||||
public void setDragonWeaponEquipped(boolean value)
|
||||
{
|
||||
_isDragonWeaponEquipped = value;
|
||||
}
|
||||
|
||||
public boolean isDragonWeaponEquipped()
|
||||
{
|
||||
return _isDragonWeaponEquipped;
|
||||
}
|
||||
|
||||
public boolean isCombatFlagEquipped()
|
||||
{
|
||||
return _combatFlagEquippedId;
|
||||
|
@@ -38,6 +38,8 @@ public class Weapon extends ItemTemplate
|
||||
{
|
||||
private WeaponType _type;
|
||||
private boolean _isMagicWeapon;
|
||||
private boolean _isDragonWeapon;
|
||||
private boolean _isCursedWeapon;
|
||||
private int _soulShotCount;
|
||||
private int _spiritShotCount;
|
||||
private int _mpConsume;
|
||||
@@ -73,6 +75,8 @@ public class Weapon extends ItemTemplate
|
||||
_type1 = ItemTemplate.TYPE1_WEAPON_RING_EARRING_NECKLACE;
|
||||
_type2 = ItemTemplate.TYPE2_WEAPON;
|
||||
_isMagicWeapon = set.getBoolean("is_magic_weapon", false);
|
||||
_isDragonWeapon = set.getBoolean("is_dragon_weapon", false);
|
||||
_isCursedWeapon = set.getBoolean("is_cursed_weapon", false);
|
||||
_soulShotCount = set.getInt("soulshots", 0);
|
||||
_spiritShotCount = set.getInt("spiritshots", 0);
|
||||
_mpConsume = set.getInt("mp_consume", 0);
|
||||
@@ -138,6 +142,22 @@ public class Weapon extends ItemTemplate
|
||||
return _isMagicWeapon;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {@code true} if the weapon is a dragon weapon, {@code false} otherwise.
|
||||
*/
|
||||
public boolean isDragonWeapon()
|
||||
{
|
||||
return _isDragonWeapon;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {@code true} if the weapon is a cursed weapon, {@code false} otherwise.
|
||||
*/
|
||||
public boolean isCursedWeapon()
|
||||
{
|
||||
return _isCursedWeapon;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the quantity of SoulShot used.
|
||||
*/
|
||||
|
@@ -1612,7 +1612,8 @@ public class Formulas
|
||||
|
||||
// Dragon weapon defence stat.
|
||||
final double dragonDefense;
|
||||
if (attackerPlayer.isDragonWeaponEquipped())
|
||||
final Weapon weapon = attacker.getActiveWeaponItem();
|
||||
if ((weapon != null) && weapon.isDragonWeapon())
|
||||
{
|
||||
dragonDefense = target.getStat().getMul(Stat.DRAGON_WEAPON_DEFENCE, 1);
|
||||
}
|
||||
|
@@ -58,6 +58,7 @@ import org.l2jmobius.gameserver.util.MathUtil;
|
||||
public enum Stat
|
||||
{
|
||||
// HP, MP & CP
|
||||
HP_LIMIT("hpLimit"),
|
||||
MAX_HP("maxHp", new MaxHpFinalizer()),
|
||||
MAX_MP("maxMp", new MaxMpFinalizer()),
|
||||
MAX_CP("maxCp", new MaxCpFinalizer()),
|
||||
|
@@ -18,11 +18,13 @@ package org.l2jmobius.gameserver.model.stats.finalizers;
|
||||
|
||||
import java.util.OptionalDouble;
|
||||
|
||||
import org.l2jmobius.Config;
|
||||
import org.l2jmobius.gameserver.data.xml.EnchantItemHPBonusData;
|
||||
import org.l2jmobius.gameserver.model.actor.Creature;
|
||||
import org.l2jmobius.gameserver.model.actor.Player;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.Pet;
|
||||
import org.l2jmobius.gameserver.model.item.ItemTemplate;
|
||||
import org.l2jmobius.gameserver.model.item.Weapon;
|
||||
import org.l2jmobius.gameserver.model.item.instance.Item;
|
||||
import org.l2jmobius.gameserver.model.itemcontainer.Inventory;
|
||||
import org.l2jmobius.gameserver.model.stats.BaseStat;
|
||||
@@ -63,30 +65,68 @@ public class MaxHpFinalizer implements IStatFunction
|
||||
|
||||
private static double defaultValue(Creature creature, Stat stat, double baseValue)
|
||||
{
|
||||
final double mul = creature.getStat().getMul(stat);
|
||||
final double add = creature.getStat().getAdd(stat);
|
||||
double addItem = 0;
|
||||
double mul = creature.getStat().getMul(stat);
|
||||
double add = creature.getStat().getAdd(stat);
|
||||
|
||||
double maxHp = (mul * baseValue) + add + creature.getStat().getMoveTypeValue(stat, creature.getMoveType());
|
||||
final boolean isPlayer = creature.isPlayer();
|
||||
|
||||
final Inventory inv = creature.getInventory();
|
||||
if (inv != null)
|
||||
if (inv == null)
|
||||
{
|
||||
// Add maxHP bonus from items
|
||||
for (Item item : inv.getPaperdollItems())
|
||||
if (isPlayer)
|
||||
{
|
||||
addItem += item.getTemplate().getStats(stat, 0);
|
||||
|
||||
// Apply enchanted item bonus HP
|
||||
if (item.isArmor() && item.isEnchanted())
|
||||
if (creature.getActingPlayer().isCursedWeaponEquipped())
|
||||
{
|
||||
final long bodyPart = item.getTemplate().getBodyPart();
|
||||
if ((bodyPart != ItemTemplate.SLOT_NECK) && (bodyPart != ItemTemplate.SLOT_LR_EAR) && (bodyPart != ItemTemplate.SLOT_LR_FINGER))
|
||||
{
|
||||
addItem += EnchantItemHPBonusData.getInstance().getHPBonus(item);
|
||||
}
|
||||
return Double.MAX_VALUE;
|
||||
}
|
||||
|
||||
mul = creature.getStat().getMul(Stat.HP_LIMIT);
|
||||
add = creature.getStat().getAdd(Stat.HP_LIMIT);
|
||||
return Math.min(maxHp, (Config.MAX_HP * mul) + add);
|
||||
}
|
||||
return maxHp;
|
||||
}
|
||||
|
||||
boolean shouldLiftLimit = false;
|
||||
|
||||
// Add maxHP bonus from items
|
||||
for (Item item : inv.getPaperdollItems())
|
||||
{
|
||||
maxHp += item.getTemplate().getStats(stat, 0);
|
||||
|
||||
// Apply enchanted item bonus HP
|
||||
if (item.isArmor() && item.isEnchanted())
|
||||
{
|
||||
final long bodyPart = item.getTemplate().getBodyPart();
|
||||
if ((bodyPart != ItemTemplate.SLOT_NECK) && (bodyPart != ItemTemplate.SLOT_LR_EAR) && (bodyPart != ItemTemplate.SLOT_LR_FINGER))
|
||||
{
|
||||
maxHp += EnchantItemHPBonusData.getInstance().getHPBonus(item);
|
||||
}
|
||||
}
|
||||
|
||||
if (item.isWeapon())
|
||||
{
|
||||
final Weapon weapon = item.getWeaponItem();
|
||||
if (weapon.isDragonWeapon() || weapon.isCursedWeapon())
|
||||
{
|
||||
shouldLiftLimit = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return (mul * baseValue) + add + addItem + creature.getStat().getMoveTypeValue(stat, creature.getMoveType());
|
||||
final double hpLimit;
|
||||
if (isPlayer && !shouldLiftLimit && !creature.getActingPlayer().isCursedWeaponEquipped())
|
||||
{
|
||||
mul = creature.getStat().getMul(Stat.HP_LIMIT);
|
||||
add = creature.getStat().getAdd(Stat.HP_LIMIT);
|
||||
hpLimit = (Config.MAX_HP * mul) + add;
|
||||
}
|
||||
else
|
||||
{
|
||||
hpLimit = Double.MAX_VALUE;
|
||||
}
|
||||
|
||||
return Math.min(maxHp, hpLimit);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user