Star Eyepatch

Item ID 19443 Name Star Eyepatch
None
Weapon Level 0 Identifier Star_Eyepatch_JP
Attack 0 Type Armor
MATK 0 Equip Locations Middle Headgear
Defense 200 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 30 Min Equip Level 99
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable No
Credit Price None Trade restriction None
Item Script
bonus bVit,3;
bonus2 bResEff,Eff_Stun,3000;

Set Script
Star Eyepatch
Orc Hero Card
if (BaseLevel >= 100) {
   bonus bBaseAtk,30*(readparam(bVit)/10);
   bonus bMatk,30*(readparam(bVit)/10);
   bonus bVit,3*(readparam(bLuk)/10);
   bonus bLuk,3*(readparam(bLuk)/10);
}
else if (BaseLevel <= 99) {
   bonus bBaseAtk,10*(readparam(bVit)/10);
   bonus bMatk,10*(readparam(bVit)/10);
   bonus bVit,readparam(bLuk)/10;
   bonus bLuk,readparam(bLuk)/10;
}
Star Eyepatch
Sealed Orc Hero Card
.@vit = readparam(bVit);
.@luk = readparam(bVit);
if (BaseLevel >= 100) {
   bonus bBaseAtk,10*(.@vit/10);
   bonus bMatk,10*(.@vit/10);
   bonus bVit,.@luk/10;
   bonus bLuk,.@luk/10;
}
else if (BaseLevel <= 99) {
   bonus bBaseAtk,3*(.@vit/10);
   bonus bMatk,3*(.@vit/10);
   bonus bVit,.@luk/20;
   bonus bLuk,.@luk/20;
}