
RENEWAL / ITEMS
Rising Sun Tuning Device
#311052Card
Gear_SKE2
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Rising Sun damage increased by 10%.
[Grade Bonus]
[Grade D] Rising Sun damage increases by additional 7%.
[Grade C] Increase physical damage against all size enemies by 10%.
[Grade B] Rising Sun damage increases by additional 8%.
[Grade A] Rising Sun damage increases by additional 10%.
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,"SKE_RISING_SUN",10;
if (.@g >= ENCHANTGRADE_D) {
bonus2 bSkillAtk,"SKE_RISING_SUN",7;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bAddSize,Size_All,10;
if (.@g >= ENCHANTGRADE_B) {
bonus2 bSkillAtk,"SKE_RISING_SUN",8;
if (.@g >= ENCHANTGRADE_A) {
bonus2 bSkillAtk,"SKE_RISING_SUN",10;
}
}
}
}