Actions

Band Aid: Difference between revisions

From Wiki | BlackoutRO

No edit summary
No edit summary
Line 2: Line 2:
[[File:17082l1.jpg|frame|RuthIess <br> Generic]]
[[File:17082l1.jpg|frame|RuthIess <br> Generic]]
[[File:17082l2.jpg|frame|RuthIess  <br> Generic]]
[[File:17082l2.jpg|frame|RuthIess  <br> Generic]]
{| class="wikitable" style="width: 78%"
{| class="wikitable"
!colspan="6"|
!colspan="6"|
<div>[[File:17067m.jpg]]</div>
<div>[[File:17067m.jpg]]</div>

Revision as of 15:02, 1 April 2018

RuthIess
Generic
RuthIess
Generic

Band Aid [17067]

Description

Ouchie! I've got a boo-boo! A cute little headgear made to ward off damage.
Reduces damage from Demihuman monsters by 10%
Lose DEF at an amount equal to half the refine rate.

[Refine Rate 7]
Maximum HP + 5%

[Refine Rate 8]
Additional 1% Demihuman resistance.

[Refine Rate 9]
Additional Maximum HP + 5%

[Refine Rate 10]
Additional 1% Demihuman resistance.

How to Obtain Redeemed by exchanging 5 Donation Credits.
Item Class Upper Headgear
Weight 5
Slots 1
Defense 4
Applicable Jobs
  • Every Job
Item Script
if (checkbroclassic() >= 2) {
	bonus(bVit, 2);
	bonus(bMdef, 10);
	bonus2(bSubRace, RC_DemiPlayer, 10);
}
else {
	bonus2(bSubRace, RC_DemiPlayer, 10);
	bonus(bDef, (-1 * getrefine() / 2));
	if (getrefine() >= 7)
		bonus(bMaxHPrate, 5);
	if (getrefine() >= 8)
		bonus2(bSubRace, RC_DemiPlayer, 1);
	if (getrefine() >= 9)
		bonus(bMaxHPrate, 5);
	if (getrefine() >= 10)
		bonus2(bSubRace, RC_DemiPlayer, 1);
}