Automatic Orb(Duple Lica)

Item ID 310153 Name Automatic Orb(Duple Lica)
Increases damage of Duple Light by 15%.
Decreases Basilica skill cooldown by 2 second.
_______________________
Refine Level +9:
Increases damage of Duple Light by additional 3%.
Decreases Basilica skill cooldown by additional 3 seconds.
_______________________
Refine Level +11:
Increases damage of Duple Light by additional 7%.
Decreases Basilica skill cooldown by additional 5 seconds.
Weapon Level 0 Identifier Automatic_Orb72
Attack 0 Type Card - Enchant
MATK 0 Equip Locations None
Defense 0 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 0 Min Equip Level None
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable No
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
bonus2 bSkillCooldown,"HP_BASILICA",-2000;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15;
bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15;
if (.@r>=9) {
   bonus2 bSkillCooldown,"HP_BASILICA",-3000;
   bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",3;
   bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",3;
   if (.@r>=11) {
      bonus2 bSkillCooldown,"HP_BASILICA",-5000;
      bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",7;
      bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",7;
   }
}