Sealed Clown Card, карта (Renewal)

Sealed Clown Card (SLD_CLOWN_CARD) – карта.

Sealed Clown Card, карта (Renewal)

Enables Level 5 Magic Strings, if the user has a Musical Instrument/Whip equipped.
FLEE + 10. Additional Flee + 10, if the user's base Vit is 110 or higher.
If compounded equipment is refined to +15 or above,
Enables Level 7 Magic Strings, if the user has a Musical Instrument/Whip equipped.
FLEE + 15 instead. Additional Flee + 15 instead, if the user's base Vit is 110 or higher.

Базовые свойства предмета

  • ID: 16013
  • Код: SLD_CLOWN_CARD
  • Тип: карта
  •  
  • Вес: 1

Скрипт

if (getrefine()>=15) {
   .@a = 7;
   .@b = 15;
}
else {
   .@a = 5;
   .@b = 10;
}
if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_WHIP) {
   skill "BA_POEMBRAGI2",.@a;
}
bonus bFlee,(readparam(bVit)>=110) ? (.@b*2) : .@b;