Item Combo Details

Item Combo #7593

Combo Size: 2
Combo Items
Awaken Pere Card
Grand_Pere_Card
Erhu [2]
Erhu_BR
Combo Effect
bonus2 bResEff,Eff_Sleep,10000;
bonus bUnbreakableArmor;
bonus bUnbreakableWeapon;
bonus2 bSkillCooldown,"WM_LULLABY_DEEPSLEEP",-1000*getequiprefinerycnt(EQI_ARMOR);
Script References
bResEff Item Bonus
bResEff
Signature:
bonus2 bResEff,eff,n;
Description:
Adds a n/100% tolerance to status eff
bUnbreakableArmor Item Bonus
bUnbreakableArmor
Signature:
bonus bUnbreakableArmor;
Description:
Armor cannot be damaged/broken by any means
bUnbreakableWeapon Item Bonus
bUnbreakableWeapon
Signature:
bonus bUnbreakableWeapon;
Description:
Weapon cannot be damaged/broken by any means
bSkillCooldown Item Bonus
bSkillCooldown
Signature:
bonus2 bSkillCooldown,sk,t;
Description:
Increases cooldown of skill sk by t milliseconds
getequiprefinerycnt Command
getequiprefinerycnt
Signature:
getequiprefinerycnt(<equipment slot>{,<char_id>})
Description:
slot. For a list of equipment slots see 'getequipid'. Can be used to check if you have reached a maximum refine value, default for this is +10:
Example:
if (getequiprefinerycnt(EQI_HEAD_TOP) < 10)
mes "I will now upgrade your " + getequipname(EQI_HEAD_TOP);
else
mes "Sorry, it's not possible to refine hats better than +10";
close;