Giant Boots

Item ID 22106 Name Giant Boots
Shoes made by imitating the shoes of the giant who was the guardian of the ancient temple.
_______________________
MaxHP +2%, MaxSP +2%
_______________________
Decreases damage taken from Demi-Human race by 1%.
_______________________
Refine Level +5:
MaxHP +4%, MaxSP +4%
Decreases damage taken from Demi-Human race by additional 2%.
_______________________
Refine Level +7:
MaxHP +4%, MaxSP +4%
Decreases damage taken from Demi-Human race by additional 2%.
_______________________
When equipped with Giant Axe:
Refine Level of Gigant Boots is +7 or higher:
Decreases damage taken from Demi-Human race by additional 30%.

Refine Level of Giant Axe is +7 or higher:
Refine Level of Gigant Boots is +7 or higher:
Increases damage of Cart Termination by 8%.
Increases Damage against monsters of Boss class by 20%.

Refine Level of Giant Axe is +9 or higher:
Refine Level of Gigant Boots is +7 or higher:
Increases damage of Cart Termination by additional 12%.
Increases Damage against monsters of Boss class by additional 30%.
_______________________
When equipped with Gigantic Bow:
Refine Level of Gigant Boots is +7 or higher:
For each 10 base STR:
Increases Ranged Physical Damage by 3%.

Refine Level of Gigantic Bow is +7 or higher:
Refine Level of Gigant Boots is +7 or higher:
Increases damage of Arrow Storm and Aimed Bolt by 20%.
Increases Damage against monsters of Boss class by 20%.

Refine Level of Gigantic Bow is +9 or higher:
Refine Level of Gigant Boots is +7 or higher:
Increases damage of Arrow Storm and Aimed Bolt by additional 30%.
Increases Damage against monsters of Boss class by additional 30%.
_______________________
When equipped with Giant Lance:
Decreases damage taken from Demi-Human race by additional 40%.
Using Spiral Pierce auto-casts Sonic Wave at the learned level.

Refine Level of Giant Lance is +7 or higher:
Increases damage of Spiral Pierce and Sonic Wave by 20%.
Increases Damage against monsters of Boss class by 20%.

Refine Level of Giant Lance is +9 or higher:
Increases damage of Spiral Pierce and Sonic Wave by additional 30%.
Increases Damage against monsters of Boss class by additional 30%.
_______________________
When equipped with Giant Shield:
Prevents knock-back effect.

Refine Level of Giant Shield is +7 or higher:
Decreases damage taken from Large size by 2%.
Decreases damage taken from Boss class by 2%.

Refine Level of Giant Shield is +9 or higher:
Decreases damage taken from Large size by additional 3%.
Decreases damage taken from Boss class by additional 3%.
_______________________
Type: Shoes
Defense: 13
Weight: 50
Armor Level: 1
_______________________
Requirement:
Base Level 85
Weapon Level 0 Identifier Giant_Boots
Attack 0 Type Armor
MATK 0 Equip Locations Footgear
Defense 13 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 50 Min Equip Level 85
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
bonus2 bSubRace,RC_DemiHuman,1;
bonus2 bSubRace,RC_Player_Human,1;
bonus bMaxHPrate,2;
bonus bMaxSPrate,2;
.@r = getrefine();
if (.@r > 4) {
   bonus2 bSubRace,RC_DemiHuman,2;
   bonus2 bSubRace,RC_Player_Human,2;
   bonus bMaxHPrate,4;
   bonus bMaxSPrate,4;
}
if (.@r > 6) {
   bonus2 bSubRace,RC_DemiHuman,2;
   bonus2 bSubRace,RC_Player_Human,2;
   bonus bMaxHPrate,4;
   bonus bMaxSPrate,4;
}

Set Script
Giant Boots
Giant Axe
.@r = getequiprefinerycnt(EQI_SHOES);
.@b = getequiprefinerycnt(EQI_HAND_R);
if (.@r >= 7) {
   bonus2 bSubRace,RC_DemiHuman,30;
   if (.@b >= 7) {
      bonus2 bSkillAtk,"WS_CARTTERMINATION",8;
      bonus2 bAddClass,Class_Boss,20;
   }
   if (.@b >= 9) {
      bonus2 bSkillAtk,"WS_CARTTERMINATION",12;
      bonus2 bAddClass,Class_Boss,30;
   }
}
Giant Boots
Gigantic Lance
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSubRace,RC_DemiHuman,40;
bonus2 bSubRace,RC_Player_Human,40;
bonus4 bAutoSpellOnSkill,"LK_SPIRALPIERCE","RK_SONICWAVE",getskilllv("RK_SONICWAVE"),1000;
if (.@r >= 7) {
   bonus2 bSkillAtk,"RK_SONICWAVE",20;
   bonus2 bSkillAtk,"LK_SPIRALPIERCE",20;
   bonus2 bSubClass,Class_Boss,20;
}
if (.@r >= 9) {
   bonus2 bSkillAtk,"RK_SONICWAVE",30;
   bonus2 bSkillAtk,"LK_SPIRALPIERCE",30;
   bonus2 bSubClass,Class_Boss,30;
}
Giant Boots
Giant Bow
.@r = getequiprefinerycnt(EQI_SHOES);
.@b = getequiprefinerycnt(EQI_HAND_R);
if (.@r >= 7) {
   bonus bLongAtkRate,3*(readparam(bStr)/10);
   if (.@b >= 7) {
      bonus2 bSkillAtk,"RA_ARROWSTORM",20;
      bonus2 bSkillAtk,"RA_AIMEDBOLT",20;
      bonus2 bAddClass,Class_Boss,20;
   }
   if (.@b >= 9) {
      bonus2 bSkillAtk,"RA_ARROWSTORM",30;
      bonus2 bSkillAtk,"RA_AIMEDBOLT",30;
      bonus2 bAddClass,Class_Boss,30;
   }
}
Giant Boots
Giant Shield
.@r = getequiprefinerycnt(EQI_HAND_L);
if (.@r > 6) {
   bonus2 bSubSize,Size_Large,2;
   bonus2 bSubClass,Class_Boss,2;
}
if (.@r > 8) {
   bonus2 bSubSize,Size_Large,3;
   bonus2 bSubClass,Class_Boss,3;
}