Dog Officer

Item ID 19300 Name Dog Officer
A cap with a cozy puppy ear in a stylish officer hat.
_______________________
For each 2 Refine Levels:
Atk +15
_______________________
Refine Level +7:
ATK +30
_______________________
Refine Level +9:
ATK +5%
ASPD +1
_______________________
Refine Level +11:
Increases Ranged Physical Damage by 3% and critical damage by 3%.
_______________________
For each Refine Level above +10:
Decreases Fixed Casting Time by 0.1 second (up to +15).
_______________________
When equipped with Thanos Katar:
For each 2 Refine Level of Thanos Katar:
ATK +20
_______________________
When equipped with Dark Rose:
For each 2 Refine Level of Dark Rose:
Increases damage of Fire Dance by 6%.
_______________________
When equipped with Tornado Axe:
For each 2 Refine Level of Tornado Axe:
Increases damage of Axe Tornado by 15%.
_______________________
Type: Headgear
Defense: 35
Position: Upper
Weight: 40
Armor Level: 1
_______________________
Requirement: None
Weapon Level 0 Identifier Dog_Officer
Attack 0 Type Armor
MATK 0 Equip Locations Upper Headgear
Defense 35 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 40 Min Equip Level None
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
bonus bBaseAtk,15*(.@r/2);
if (.@r>=7) {
   bonus bBaseAtk,30;
}
if (.@r>=9) {
   bonus bAtkRate,5;
   bonus bAspd,1;
}
if (.@r>=11) {
   bonus bCritAtkRate,3;
   bonus bLongAtkRate,3;
}
if (.@r>=10) {
   bonus bFixedCast,-100*(min((.@r-10),15)/1);
}

Set Script
Dog Officer
Thanos Katar
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
bonus bBaseAtk,20*(.@r_weapon/2);
Dog Officer
Dark Rose
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"RL_FIREDANCE",6*(.@r_weapon/2);
Dog Officer
Tornado Axe
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"NC_AXETORNADO",15*(.@r_weapon/2);