Rabbit in the Hat: Difference between revisions
From Wiki | BlackoutRO
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
[Refine Rate 7~8]<br> | [Refine Rate 7~8]<br> | ||
INT + 2. | |||
[Refine Rate 9~10]<br> | [Refine Rate 9~10]<br> | ||
Additional INT + 3. | |||
|- | |- | ||
!colspan="2"|How to Obtain | !colspan="2"|How to Obtain | ||
Line 44: | Line 44: | ||
|- | |- | ||
|colspan="6"| | |colspan="6"| | ||
<pre> | |||
if (getmapflag(strcharinfo(PC_MAP), mf_broclassic)) { | |||
bonus(bMatkRate, 15); | |||
bonus(bInt, 3); | |||
bonus(bDex, 2); | |||
} | |||
else { | |||
bonus bMatkRate,10 + (getrefine() / 2); | |||
bonus(bDef, (-1 * getrefine() / 2)); | |||
if (getrefine() >= 7) | |||
bonus(bInt, 2); | |||
if (getrefine() >= 9) | |||
bonus(bInt, 3); | |||
} | |||
</pre> | |||
|} | |} | ||
</center> | </center> |
Revision as of 01:24, 29 March 2018
Description |
A traditional magician's hat, with the bunny and all! [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(bMatkRate, 15); bonus(bInt, 3); bonus(bDex, 2); } else { bonus bMatkRate,10 + (getrefine() / 2); bonus(bDef, (-1 * getrefine() / 2)); if (getrefine() >= 7) bonus(bInt, 2); if (getrefine() >= 9) bonus(bInt, 3); } |