Phreeoni Wing Suit

Item ID 450217 Name Phreeoni Wing Suit
A suit that embodies the figure of a Phreeoni.
It is difficult to expect defense power from this armor.
_______________________
CON +3, ATK +100
_______________________
For each 2 Refine Levels:
ATK +15
_______________________
For each 4 Refine Levels:
P.ATK +1
_______________________
Refine Level +7:
Increases Ranged Physical Damage by 10%.
_______________________
Refine Level +9:
Perfect HIT +15%
_______________________
Refine Level +11:
Decreases After Skill Delay by 15%.
Increases Ranged Physical Damage by additional 15%.
_______________________
When equipped with Phreeoni Card:
For each 2 Refine Levels of equipped Armor:
Increases Ranged Physical Damage by 3%.

For each 3 Refine Levels of equipped Armor:
Increases Physical Damage against monsters of Boss class by 8%.
_______________________
When equipped with Phreeoni Card:
P.ATK +10, C.RATE +5

For each 3 Refine Levels of equipped Armor:
Increases Critical Damage by 4%.
_______________________
When Pet Phreeoni is active:
ATK +7%, ASPD +2
_______________________
[Additional Options by Grade]
[Grade D]: ATK +40, ATK +5%
[Grade C]: CON +5
[Grade B]: Physical Damage against enemies of every size +15%.
[Grade A]: P.ATK +7
_______________________
Type: Armor
Defense: 10
Weight: 150
Armor Level: 2
_______________________
Requirement:
Base Level 200
Weapon Level 0 Identifier Phreeoni_Wing_Suits
Attack 0 Type Armor
MATK 0 Equip Locations Armor
Defense 10 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 150 Min Equip Level 200
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@g = getenchantgrade();
.@r = getrefine();
bonus bBaseAtk,100+15*(.@r/2);
bonus bCon,3;
bonus bPAtk,(.@r/4);
if (.@r>=7) {
   bonus bLongAtkRate,10;
   if (.@r>=9) {
      bonus bPerfectHitAddRate,15;
      if (.@r>=11) {
         bonus bLongAtkRate,15;
         bonus bDelayrate,-15;
      }
   }
}
if (getpetinfo(PETINFO_EGGID) == 9111) {
   bonus bAtkRate,7;
   bonus bAspd,2;
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bAtkRate,5;
   bonus bBaseAtk,40;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bCon,5;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bAddSize,Size_All,15;
         if (.@g>=ENCHANTGRADE_A) {
            bonus bPAtk,7;
         }
      }
   }
}

Set Script
Phreeoni Wing Suit
Phreeoni Card
.@r_armor = getequiprefinerycnt(EQI_ARMOR);
bonus bLongAtkRate,3*(.@r_armor/2);
bonus2 bAddClass,Class_Boss,8*(.@r_armor/3);
Phreeoni Wing Suit
Infinite Phreeoni Card
.@r_armor = getequiprefinerycnt(EQI_ARMOR);
bonus bCRate,5;
bonus bPAtk,10;
bonus bCritAtkRate,4*(.@r_armor/3);