Sage Ring: Difference between revisions
From Wiki | BlackoutRO
No edit summary |
No edit summary |
||
Line 49: | Line 49: | ||
|- | |- | ||
|colspan="6"| | |colspan="6"| | ||
<pre> | |||
if (getmapflag(strcharinfo(PC_MAP), mf_broclassic)) { | |||
bonus(bMdef, 5); | |||
if (readparam(bInt) >= 300) | |||
bonus(bMatkRate, 10); | |||
} | |||
else { | |||
bonus(bMatkRate, 10); | |||
bonus(bDef, (-1 * getrefine() / 2)); | |||
if (getrefine() >= 7) | |||
bonus(bInt, 2); | |||
if (getrefine() >= 8) | |||
bonus(bMatkRate, 1); | |||
if (getrefine() >= 9) | |||
bonus(bInt, 3); | |||
if (getrefine() >= 10) | |||
bonus(bMatkRate, 1); | |||
} | |||
</pre> | |||
|} | |} | ||
</center> | </center> |
Revision as of 01:22, 29 March 2018
Description |
So beautiful, this ring of sage, it's power, almost too hard to gauge. Weaved with magic, in goodness wrought, a circle of soundness, an abstract thought. [Refine Rate 7] [Refine Rate 8] [Refine Rate 9] [Refine Rate 10] | ||||
---|---|---|---|---|---|
How to Obtain | Redeemed by exchanging 5 Donation Credits. | ||||
Item Class | Lower Headgear | ||||
Weight | 30 | ||||
Slots | 1 | ||||
Defense | 4 | ||||
Applicable Jobs | |||||
| |||||
Item Script | |||||
if (getmapflag(strcharinfo(PC_MAP), mf_broclassic)) { bonus(bMdef, 5); if (readparam(bInt) >= 300) bonus(bMatkRate, 10); } else { bonus(bMatkRate, 10); bonus(bDef, (-1 * getrefine() / 2)); if (getrefine() >= 7) bonus(bInt, 2); if (getrefine() >= 8) bonus(bMatkRate, 1); if (getrefine() >= 9) bonus(bInt, 3); if (getrefine() >= 10) bonus(bMatkRate, 1); } |