ID #310691
Card
Star Cluster of Wisdom Lv3
Buy Price: N/A
Sell Price: N/A
A stellar essence that strengthens the wearer.
_______________________
For each 15 base WIS:
MaxSP +2%
Increases Healing skills effectiveness by 5%.
_______________________
If enchanted Armor's Grade is D:
For each 15 base WIS:
MaxSP +1%
Increases Healing skills effectiveness by additional 2%.
_______________________
If enchanted Armor's Grade is C:
For each 15 base WIS:
MaxSP +1%
Increases Healing skills effectiveness by 2%.
Increases Natural SP Recovery Rate by 2%.
_______________________
If enchanted Armor's Grade is B:
For each 15 base WIS:
MaxSP +2%
H.PLUS +2
Increases Natural SP Recovery Rate by additional 3%.
_______________________
If enchanted Armor's Grade is A:
For each 15 base WIS:
MaxSP +2%
H.PLUS +3
_______________________
For each 15 base WIS:
MaxSP +2%
Increases Healing skills effectiveness by 5%.
_______________________
If enchanted Armor's Grade is D:
For each 15 base WIS:
MaxSP +1%
Increases Healing skills effectiveness by additional 2%.
_______________________
If enchanted Armor's Grade is C:
For each 15 base WIS:
MaxSP +1%
Increases Healing skills effectiveness by 2%.
Increases Natural SP Recovery Rate by 2%.
_______________________
If enchanted Armor's Grade is B:
For each 15 base WIS:
MaxSP +2%
H.PLUS +2
Increases Natural SP Recovery Rate by additional 3%.
_______________________
If enchanted Armor's Grade is A:
For each 15 base WIS:
MaxSP +2%
H.PLUS +3
Basic Information
Type
Card
Scripts
Script .@param = (readparam(bWis)/15); .@g = getenchantgrade(); bonus bMaxSPrate,2*.@param; bonus bHealPower,5*.@param; if (.@g >= ENCHANTGRADE_D) { bonus bMaxSPrate,.@param; bonus bHealPower,2*.@param; if (.@g >= ENCHANTGRADE_C) { bonus bSPrecovRate,2*.@param; bonus bMaxSPrate,.@param; bonus bHealPower,2*.@param; if (.@g >= ENCHANTGRADE_B) { bonus bSPrecovRate,3*.@param; bonus bHPlus,2*.@param; bonus bMaxSPrate,2*.@param; if (.@g >= ENCHANTGRADE_A) { bonus bHPlus,3*.@param; bonus bMaxSPrate,2*.@param; } } } }
.@param = (readparam(bWis)/15);
.@g = getenchantgrade();
bonus bMaxSPrate,2*.@param;
bonus bHealPower,5*.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bMaxSPrate,.@param;
bonus bHealPower,2*.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bSPrecovRate,2*.@param;
bonus bMaxSPrate,.@param;
bonus bHealPower,2*.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bSPrecovRate,3*.@param;
bonus bHPlus,2*.@param;
bonus bMaxSPrate,2*.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bHPlus,3*.@param;
bonus bMaxSPrate,2*.@param;
}
}
}
}