Gold Fish Head Hat-LT [1], броня (Renewal)
Gold Fish Head Hat-LT [1] (GOLDFISH_HAT_LT) – броня.
![Gold Fish Head Hat-LT [1], броня (Renewal) Gold Fish Head Hat-LT [1], броня (Renewal)](/images/db/items/picture/400155.png)
If the user's base level is 210 or higher, P.Atk + 2, S.Matk + 2.
Has a chance to endow weapon with holy property for 60 seconds when dealing physical damage.
Has a chance to increase holy property magical damage by 20% for 60 seconds when dealing magical damage.
If refine rate is 7 or higher, increases melee physical damage by 10%, increase holy property magical damage by 10%
If refine rate is 9 or higher, Atk/Matk + 5%.
If refine rate is 11 or higher, increases physical and magical damage against shadow property enemies by 20%.
[Bonus by grade]
[Grade D] Increases melee physical damage by 5%, increases holy property magical damage by 5%.
[Grade C] P.Atk + 2, S.Matk + 2.
[Grade B] If refine rate is 12 or higher, reduces fixed casting time by 0.5 seconds.
Базовые свойства предмета
- ID: 29275
- Код: GOLDFISH_HAT_LT
- Тип: броня
- Уровень брони: 2
- Защита: 2
- Требуемый уровень: 150
- Вес: 40
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
if (BaseLevel>=210) {
bonus bPAtk,2;
bonus bSMatk,2;
}
if (.@r>=7) {
bonus2 bMagicAtkEle,Ele_Holy,10;
bonus bShortAtkRate,10;
if (.@r>=9) {
bonus bAtkRate,5;
bonus bMatkRate,5;
if (.@r>=11) {
bonus2 bMagicAddEle,Ele_Dark,20;
bonus2 bAddEle,Ele_Dark,20;
}
}
}
if (.@g >= ENCHANTGRADE_D) {
bonus2 bMagicAtkEle,Ele_Holy,5;
bonus bShortAtkRate,5;
if (.@g >= ENCHANTGRADE_C) {
bonus bPAtk,2;
bonus bSMatk,2;
if (.@g >= ENCHANTGRADE_B) {
if (.@r>=12) {
bonus bFixedCast,-500;
}
}
}
}
autobonus "{ bonus bAtkEle,Ele_Holy; }",1,60000,BF_WEAPON;
autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,20; }",1,60000,BF_MAGIC;