Angel Ripper: Difference between revisions
From Wiki | BlackoutRO
No edit summary |
mNo edit summary |
||
Line 44: | Line 44: | ||
|- | |- | ||
|colspan="6"| | |colspan="6"| | ||
<pre> | |||
if (getmapflag(strcharinfo(PC_MAP), mf_broclassic)) { | |||
bonus(bStr, 2); | |||
if (readparam(bStr) >= 370) | |||
bonus(bAtkRate, 20); | |||
if (readparam(bDex) >= 370) | |||
bonus(bHit, 75); | |||
if (readparam(bInt) >= 370) | |||
bonus(bMatkRate, 15); | |||
} | |||
else { | |||
bonus(bAtkRate, 10 + (getrefine() / 2)); | |||
bonus(bDef, (-1 * getrefine() / 2)); | |||
if (getrefine() >= 7) | |||
bonus(bStr, 2); | |||
if (getrefine() >= 9)> | |||
bonus(bStr, 3); | |||
} | |||
</pre> | |||
|- | |- | ||
|colspan="6"| | |colspan="6"| |
Revision as of 01:02, 29 March 2018
Description |
Who knew angels had such amazing fashion sense? This feathery, celestial hat came straight from heaven. Seraphs glance upon you with approval, this helm is just plain angelic. [Refine Rate 7~8] [Refine Rate 9~10] | ||||
---|---|---|---|---|---|
How to Obtain | Redeemed by exchanging 5 Donation Credits. | ||||
Item Class | Upper Headgear | ||||
Weight | 50 | ||||
Slots | 1 | ||||
Defense | 4 | ||||
Applicable Jobs | |||||
| |||||
Item Script | |||||
if (getmapflag(strcharinfo(PC_MAP), mf_broclassic)) { bonus(bStr, 2); if (readparam(bStr) >= 370) bonus(bAtkRate, 20); if (readparam(bDex) >= 370) bonus(bHit, 75); if (readparam(bInt) >= 370) bonus(bMatkRate, 15); } else { bonus(bAtkRate, 10 + (getrefine() / 2)); bonus(bDef, (-1 * getrefine() / 2)); if (getrefine() >= 7) bonus(bStr, 2); if (getrefine() >= 9)> bonus(bStr, 3); } | |||||