Glorious Spear, одноручное копьё (Pre-Renewal)
Glorious Spear (KRIEGER_ONEHAND_SPEAR1) – оружие.

A weapon that has been designed specifically for battles against humans.
Account Bound
Property: Neutral
Increases physical damage on Demi-Human race targets by 95%.
Bypass 20% of hard defense of Demi-Human race targets when performing a physical attack.
Increases physical damage on Human Player race targets by 95%.
Bypass 20% of hard defense of Human Player race targets when performing a physical attack.
This item is indestructible in battle.
If upgrade level is +6 or higher,
Aspd + 10%
Bypass an additional 5% of hard defense of Demi-Human race targets when performing a physical attack.
Bypass an additional 5% of hard defense of Human Player race targets when performing a physical attack.
Enables Level 1 Slaughter.
Crusader Bonus
If upgrade level is +9 or higher,
Adds a 10% chance of casting Level 5 Gloria Domini on the user when performing a physical attack.
Knight Bonus
If upgrade level is +9 or higher,
Adds a 20% chance of casting Level 2 Fatal Wound on the target when using Pierce.
Базовые свойства предмета
- ID: 4408
 - Код: KRIEGER_ONEHAND_SPEAR1
 - Тип: оружие
 - Подтип: одноручное копьё
 - Уровень оружия: 4
 - Атака: 130
 - Требуемый уровень: 80
 - Профессии: crusader, knight, swordman
 
- Цена покупки: 20 з
 - Цена продажи: 10 з
 - Вес: 1
 
Скрипт
bonus2 bAddRace,RC_DemiHuman,95;
bonus2 bAddRace,RC_Player_Human,95;
bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;
bonus2 bIgnoreDefRaceRate,RC_Player_Human,20;
bonus bUnbreakableWeapon;
if (getrefine()>5) {
   bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);
   bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);
   bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;
   bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;
   bonus bAspdRate,10;
}
if (getrefine()>8) {
   if (BaseJob == Job_Knight)
      bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200;
   else if (BaseJob == Job_Crusader)
      bonus3 bAutoSpell,"PA_PRESSURE",5,100;
}