Actions

3D Glasses: Difference between revisions

From Wiki | BlackoutRO

No edit summary
No edit summary
Line 49: Line 49:
|-
|-
|colspan="6"|
|colspan="6"|
|-
<pre>
|colspan="6"|
if (getmapflag(strcharinfo(PC_MAP), mf_broclassic)) {
|-
bonus(bIntravision, 0);
|colspan="6"|
bonus(bAtk, 30);
bonus(bMatkRate, 10);
}
else {
bonus(bIntravision, 0);
bonus(bDef, (-1 * getrefine() / 2));
if (getrefine() >= 7) {
bonus(bMaxHPrate, 2);
bonus2(bSubRace, RC_DemiPlayer, 1);
}
if (getrefine() >= 8) {
bonus(bAtkRate, 1);
bonus(bMatkRate, 1);
}
if (getrefine() >= 9) {
bonus(bMaxHPrate, 2);
bonus2(bSubRace, RC_DemiPlayer, 1);
}
if (getrefine() >= 10) {
bonus(bAtkRate, 1);
bonus(bMatkRate, 1);
}
}
</pre>
|}
|}
</center>
</center>

Revision as of 01:12, 29 March 2018

3D Glasses [17093]

Description

A pair of glasses with multi-colored lenses.
Enables you to see Hidden Enemies.
Lose DEF at an amount equal to half the refine rate.

[Refine Rate 7]
Maximum HP + 2% Add 1% Demihuman resistance.

[Refine Rate 8]
ATK + 1%, MATK + 1%

[Refine Rate 9]
Additional Maximum HP + 2% Additional 1% Demihuman resistance.

[Refine Rate 10]
Additional ATK + 1%, MATK + 1%

How to Obtain Redeemed by exchanging 5 Donation Credits.
Item Class Mid Headgear
Weight 5
Slots 1
Defense 3
Applicable Jobs
  • Every Job
Item Script
if (getmapflag(strcharinfo(PC_MAP), mf_broclassic)) {
	bonus(bIntravision, 0);
	bonus(bAtk, 30);
	bonus(bMatkRate, 10);
}
else {
	bonus(bIntravision, 0);
	bonus(bDef, (-1 * getrefine() / 2));
	if (getrefine() >= 7) {
		bonus(bMaxHPrate, 2);
		bonus2(bSubRace, RC_DemiPlayer, 1);
	}
	if (getrefine() >= 8) {
		bonus(bAtkRate, 1);
		bonus(bMatkRate, 1);
	}
	if (getrefine() >= 9) {
		bonus(bMaxHPrate, 2);
		bonus2(bSubRace, RC_DemiPlayer, 1);
	}
	if (getrefine() >= 10) {
		bonus(bAtkRate, 1);
		bonus(bMatkRate, 1);
	}
}