Libra

Item ID 4969 Name Libra
Increases recovery amount gained from Healing skills and Restorative items by 1%.
_______________________
When equipped with Nidhogur and Loki Hat:
Refine Level of Nidhogur and Loki Hat is +7 or higher:
Increases recovery amount gained from Healing skills and Restorative items by 1%.

Refine Level of Nidhogur and Loki Hat is +9 or higher:
Increases recovery amount gained from Healing skills and Restorative items by additional 1%.
Weapon Level 0 Identifier Z_Stone_12
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
setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL";
for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ) {
   bonus2 bSkillHeal2,.@skills$[.@i],1;
}
/* TODO: Depending on some recovery items HP recovery amount + 1% */

Set Script
Libra
Loki & Nidhoggur's Hat
.@r = getequiprefinerycnt(EQI_HEAD_TOP);
if (.@r >= 7) {
   setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL";
   for( .@i = 0; .@i < getarraysize(.@skills$); .@i++) {
      bonus2 bSkillHeal2,.@skills$[.@i],2 + ( .@r >= 9 ) ? 2 : 0;  /* TODO: Depending on some recovery items HP recovery amount + 1% or if refine >= 9 + 2% */
   }
}
/* TODO: Depending on some recovery items HP recovery amount + 1% or if refine >= 9 + 2% */