Greater Dracule Horn

Item ID 19311 Name Greater Dracule Horn
An unusual helmet that has vicious aura bearing the Great Demon name.
As its name implies, it has an ability to absorb the life force of its enemy.
_______________________
MaxHP +10%
ATK +6%
_______________________
Random chance to absorb 10% of damage into HP when dealing physical damage.
_______________________
Enables the use of Level 1 Crazy Uproar.
_______________________
Refine Level +7:
ATK +5%
Random chance to absorb 15% of damage against enemy into HP when dealing physical damage.
Chance of absorbing increases.
_______________________
Refine Level +9:
ATK +5%
Random chance to absorb 15% of damage against enemy into HP when dealing physical damage.
Chance of absorbing increases.
_______________________
When equipped with Hunter Fly Card:
Disables HP absorbing effect.
_______________________
Indestructible in battle
_______________________
Type: Headgear
Defense: 10
Position: Upper
Weight: 80
Armor Level: 1
_______________________
Requirement:
Base Level 100
Weapon Level 0 Identifier Greater_Dracul_Horn
Attack 0 Type Armor
MATK 0 Equip Locations Upper Headgear
Defense 10 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 80 Min Equip Level 100
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
bonus bUnbreakableHelm;
bonus bMaxHPrate,10;
bonus2 bAddClass,Class_All,6;
bonus2 bHPDrainRate,30,10;
skill "MC_LOUD",1;
if (.@r>=9) {
   bonus2 bAddClass,Class_All,10;
   bonus2 bHPDrainRate,30,30;
}
else if (.@r>=7) {
   bonus2 bAddClass,Class_All,5;
   bonus2 bHPDrainRate,30,15;
}

Set Script
Greater Dracule Horn
Hunter Fly Card
.@r = getequiprefinerycnt(EQI_HEAD_TOP);
bonus2 bHPDrainRate,-30,10;
if (.@r >= 9) {
   bonus2 bHPDrainRate,-30,30;
}
else if (.@r >= 7) {
   bonus2 bHPDrainRate,-30,15;
}