
RENEWAL / ITEMS
Star Cluster of Stamina Lv1
#310677Card
Star_Cluster_Of_Sta1
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
The essence of stars that strengthens the wearer.
------------------------
MaxHP + 1% and RES + 1 per 15 base STA of the user.
If armor grade is D, additional MaxHP + 1% and RES + 1 per 15 base STA.
If armor grade is C, additional MaxHP + 1% and additional RES + 1 per 15 base STA.
If armor grade is B, additional MaxHP + 1% and additional RES + 1 per 15 base STA.
If armor grade is A, additional MaxHP + 1% and additional RES + 2 per 15 base STA.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Trade
Item effect script
.@param = (readparam(bSta)/15);
.@g = getenchantgrade();
bonus bMaxHPrate,.@param;
bonus bRes,.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bMaxHPrate,.@param;
bonus bRes,.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bMaxHPrate,.@param;
bonus bRes,.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bMaxHPrate,.@param;
bonus bRes,.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bMaxHPrate,.@param;
bonus bRes,2*.@param;
}
}
}
}