
RENEWAL / ITEMS
Sealed Clown Card
#27213Card
SLD_Clown_Card
TypeCard
Card placementArmor
Weight1
Buy price0 z
Sell price0 z
Card illustration
Description
Class: Card
Compounds On: Weapon
Weight: 1
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.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Card placement
- Armor
- Trade
Item effect script
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;