Giant's Protection

Item ID 28521 Name Giant's Protection
A ring worn by the giant who was the protector of ancient temples.
_______________________
ATK +5%
_______________________
Base STR at least 120:
MaxHP +5%
MaxSP +5%
ATK +50
_______________________
When equipped with Giant Axe:
Decreases damage taken from Demi-Human race by 3%.

Refine Level +7:
Increases Physical Damage against enemies of Boss class by 5%.
Increases damage of Cart Termination by 5%.

Refine Level +9:
Increases Physical Damage against enemies of Boss class by additional 10%.
Increases damage of Cart Termination by 10%.
_______________________
When equipped with Gigantic Bow:
For each 10 base STR:
Increases Ranged Physical Damage by 2%.

Refine Level +7:
Increases Physical Damage against enemies of Boss class by 5%.
Increases damage of Arrow Storm and Aimed Bolt by 5%.

Refine Level +9:
Increases Physical Damage against enemies of Boss class by additional 10%.
Increases damage of Arrow Storm and Aimed Bolt by additional 10%.
_______________________
When equipped with Giant Lance:
Decreases damage taken from Demi-Human race by 3%.

Refine Level +7:
Increases Physical Damage against enemies of Boss class by 5%.
Increases damage of Spiral Pierce and Sonic Wave by 5%.

Refine Level +9:
Increases Physical Damage against enemies of Boss class by additional 10%.
Increases damage of Spiral Pierce and Sonic Wave by additional 10%.
_______________________
Type: Accessory
Weight: 50
Armor Level: 1
_______________________
Requirement:
Base Level 100
Weapon Level 0 Identifier Giant_Protection
Attack 0 Type Armor
MATK 0 Equip Locations Accessory Left/Right
Defense 0 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 50 Min Equip Level 1
NPC Buy 20 Max Equip Level None
NPC Sell 10 Refineable No
Credit Price None Trade restriction None
Item Script
bonus2 bAddClass,Class_All,5;
if (readparam(bStr)>=120) {
   bonus bMaxHPrate,5;
   bonus bMaxSPrate,5;
   bonus bBaseAtk,50;
}

Set Script
Giant's Protection
Giant Axe
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSubRace,RC_DemiHuman,3;
if (.@r >= 7) {
   bonus2 bAddClass,Class_Boss,5;
   bonus2 bSkillAtk,"WS_CARTTERMINATION",5;
}
if (.@r >= 9) {
   bonus2 bAddClass,Class_Boss,10;
   bonus2 bSkillAtk,"WS_CARTTERMINATION",10;
}
Giant's Protection
Gigantic Lance
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSubRace,RC_DemiHuman,3;
bonus2 bSubRace,RC_Player_Human,3;
if (.@r >= 7) {
   bonus2 bAddClass,Class_Boss,5;
   bonus2 bSkillAtk,"LK_SPIRALPIERCE",5;
   bonus2 bSkillAtk,"RK_SONICWAVE",5;
}
if (.@r >= 9) {
   bonus2 bAddClass,Class_Boss,10;
   bonus2 bSkillAtk,"LK_SPIRALPIERCE",10;
   bonus2 bSkillAtk,"RK_SONICWAVE",10;
}
Giant's Protection
Giant Bow
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus bLongAtkRate,2*(readparam(bStr)/10);
if (.@r >= 7) {
   bonus2 bAddClass,Class_Boss,5;
   bonus2 bSkillAtk,"RA_ARROWSTORM",5;
   bonus2 bSkillAtk,"RA_AIMEDBOLT",5;
}
if (.@r >= 9) {
   bonus2 bAddClass,Class_Boss,10;
   bonus2 bSkillAtk,"RA_ARROWSTORM",10;
   bonus2 bSkillAtk,"RA_AIMEDBOLT",10;
}