
RENEWAL / ITEMS
Wolf Orb (Power of Sea)
#310564Card
Wolf_Orb_Skill_49
Item stats
- Weight
- 0
- Buy price
- 0 z
- Sell price
- 0 z
Equipment & requirements
- Type
- Card
Wolf Orb (Power of Sea) description & effects
Reduce Tuna Party and Tasty Shrimp Party cooldown by 1 second.
------------------------
When refine level is 7 or higher, reduce Tuna Party and Tasty Shrimp Party cooldown by additional 1 second.
------------------------
When refine level is 9 or higher, reduce Tuna Party and Tasty Shrimp Party cooldown by additional 2 seconds.
------------------------
When refine level is 11 or higher, reduce Tuna Party and Tasty Shrimp Party cooldown by additional 2 seconds.
Item details
- Trade
Item effect script
.@r = getrefine();
bonus2 bSkillCooldown,"SU_SHRIMPARTY",-1000;
bonus2 bSkillCooldown,"SU_TUNAPARTY",-1000;
if (.@r>=7) {
bonus2 bSkillCooldown,"SU_SHRIMPARTY",-1000;
bonus2 bSkillCooldown,"SU_TUNAPARTY",-1000;
if (.@r>=9) {
bonus2 bSkillCooldown,"SU_SHRIMPARTY",-2000;
bonus2 bSkillCooldown,"SU_TUNAPARTY",-2000;
if (.@r>=11) {
bonus2 bSkillCooldown,"SU_SHRIMPARTY",-2000;
bonus2 bSkillCooldown,"SU_TUNAPARTY",-2000;
}
}
}
