
RENEWAL / ITEMS
Wolf Orb (Above All) Level 2
#310580Card
Wolf_Orb_Above_2
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Reduce physical and magical damage taken from normal and boss enemies by 5%.
------------------------
When refine level is 7 or higher, reduce physical and magical damage taken from all property enemies by 5%.
------------------------
When refine level is 9 or higher, reduce physical and magical damage taken from all size enemies by 5%.
------------------------
When refine level is 11 or higher, reduce physical and magical damage taken from all race enemies (except players) by 5%.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Trade
Item effect script
.@r = getrefine();
bonus2 bSubClass,Class_Normal,5;
bonus2 bSubClass,Class_Boss,5;
if (.@r>=7) {
bonus2 bSubEle,Ele_All,5;
if (.@r>=9) {
bonus2 bSubSize,Size_All,5;
if (.@r>=11) {
bonus2 bSubRace,RC_All,5;
bonus2 bSubRace,RC_Player_Human,-5;
bonus2 bSubRace,RC_Player_Doram,-5;
}
}
}