Actions

Deviruchi Wings: Difference between revisions

From Wiki | BlackoutRO

No edit summary
No edit summary
Line 1: Line 1:
[[File:17119l1.jpg|frame|King Martin <br> Generic]]
[[File:17119l1.jpg|frame|King Martin <br> Generic]]
[[File:17119l2.jpg|frame|King Martin <br> Generic]]
[[File:17119l2.jpg|frame|King Martin <br> Generic]]
{| class="wikitable" style="width: 70%"
{| class="wikitable" style="width: 65%"
!colspan="6"|
!colspan="6"|
<div>[[File:17119m.jpg]]</div>
<div>[[File:17119m.jpg]]</div>

Revision as of 22:08, 15 June 2018

King Martin
Generic
King Martin
Generic

Deviruchi Wings [17119]

Description Like the wings off the back, of a poring so black: this item from a Devim has malice quite heavy.

ATK + 10%
Lose DEF at an amount equal to half the refine rate.

[Refine Rate 7]
STR + 2

[Refine Rate 8]
Additional ATK + 1%

[Refine Rate 9]
Additional STR + 3

[Refine Rate 10]
Additional ATK + 1%

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