
RENEWAL / ITEMS
Abyss Square Tuning Device
#311039Card
Gear_ABC1
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Abyss Square damage increased by 5%.
[Grade Bonus]
[Grade D] Abyss Square damage increases by additional 3%.
[Grade C] Increase magic damage against all size enemies by 10%.
[Grade B] Abyss Square damage increases by additional 4%.
[Grade A] Abyss Square damage increases by additional 6%.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Trade
Item effect script
.@g = getenchantgrade();
bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",5;
if (.@g >= ENCHANTGRADE_D) {
bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",3;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bMagicAddSize,Size_All,10;
if (.@g >= ENCHANTGRADE_B) {
bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",4;
if (.@g >= ENCHANTGRADE_A) {
bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",6;
}
}
}
}