Nebula Suit of Creative [1], броня (Renewal)
Nebula Suit of Creative [1] (STAR_SUIT_OF_CRT) – броня.
![Nebula Suit of Creative [1], броня (Renewal) Nebula Suit of Creative [1], броня (Renewal)](/images/db/items/picture/450172.png)
CRT + 1.
Atk + 100.
Atk + 10 per 2 refine rate.
If refine rate is 9 or higher, Cri + 5.
If refine rate is 11 or higher, increases critical damage by 20%.
[Bonus by grade]
[Grade D] Atk + 1 per 2 refine rate, increases critical damage by 2% and Cri + 1 per 3 refine rate.
[Grade C] Atk + 2 per 2 refine rate, increases critical damage by 3% and Cri + 2 per 3 refine rate.
[Grade B] Increases critical damage by 5% per 3 refine rate, C.Rate + 1 and P.Atk + 1 per 4 refine rate.
[Grade A] Increases critical damage by 7% per 3 refine rate, C.Rate + 1 and P.Atk + 2 per 4 refine rate.
Базовые свойства предмета
- ID: 30262
- Код: STAR_SUIT_OF_CRT
- Тип: броня
- Уровень брони: 2
- Защита: 135
- Требуемый уровень: 240
- Вес: 150
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
bonus bCrt,1;
bonus bBaseAtk,100+10*(.@r/2);
if (.@r>=9) {
bonus bCritical,5;
if (.@r>=11) {
bonus bCritAtkRate,20;
}
}
if (.@g >= ENCHANTGRADE_D) {
bonus bBaseAtk,(.@r/2);
bonus bCritAtkRate,2*(.@r/3);
bonus bCritical,(.@r/3);
if (.@g >= ENCHANTGRADE_C) {
bonus bBaseAtk,2*(.@r/2);
bonus bCritAtkRate,3*(.@r/3);
bonus bCritical,2*(.@r/3);
if (.@g >= ENCHANTGRADE_B) {
bonus bCritAtkRate,5*(.@r/3);
bonus bCRate,(.@r/4);
bonus bPAtk,(.@r/4);
if (.@g >= ENCHANTGRADE_A) {
bonus bCritAtkRate,7*(.@r/3);
bonus bCRate,(.@r/4);
bonus bPAtk,2*(.@r/4);
}
}
}
}