ID #311052
Card
Rising Sun Tuning Device
Buy Price: N/A
Sell Price: N/A
Increases damage of Rising Sun by 10%.
_______________________
[Bonus by Weapon Grade]
[Grade D]: Damage of Rising Sun +7%.
[Grade C]: Physical Damage against enemies of every size +10%.
[Grade B]: Damage of Rising Sun +8%.
[Grade A]: Damage of Rising Sun +10%.
_______________________
[Bonus by Weapon Grade]
[Grade D]: Damage of Rising Sun +7%.
[Grade C]: Physical Damage against enemies of every size +10%.
[Grade B]: Damage of Rising Sun +8%.
[Grade A]: Damage of Rising Sun +10%.
Basic Information
Type
Card
Scripts
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; } } } }
.@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;
}
}
}
}