Cylinder Boots
| Item ID | 470060 | Name | Cylinder Boots |
|
Boots developed to keep chemicals used for cart maintenance on hand.
The test tubes are made of reinforced material, but be careful when handling it. _______________________ MDEF +10 MaxHP +3%, MaxSP +3% _______________________ For each Level of Cart Boost: HIT +20 Increases Attack Speed (decreases After Attack Delay by 4%). _______________________ When Level 10 Special Pharmacy is learned: Ignores physical defense of every race by 100%. _______________________ For each Level of Crazy Weed: Increases damage of Cart Tornado by 10%. _______________________ For each Level of Fire Expansion: Increases Physical Damage by 4%. _______________________ Refine Level +5: MaxHP +7%, MaxSP +7% Decreases Variable Casting Time of Cart Cannon by 50%. For each 2 Base Level: Increases damage of Cart Cannon by 1%. _______________________ Refine Level +7: MaxHP +10%, MaxSP +10% Decreases Variable Casting Time of Cart Cannon by 50%. For each 2 Base Level: Increases damage of Cart Cannon by 1%. _______________________ Type: Shoes Defense: 12 Weight: 40 Armor Level: 1 _______________________ Requirement: Base Level 100 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Cylinder_Boots | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Footgear | ||
| Defense | 12 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 0 | Equip Upper | None | ||
| Weight | 40 | 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();
.@val = getskilllv("GN_CARTBOOST");
bonus bUnbreakableShoes;
bonus bMdef,10;
bonus bMaxHPrate,3;
bonus bMaxSPrate,3;
bonus bHit,20*.@val;
bonus bAspdRate,4*.@val;
bonus bAtkRate,4*getskilllv("GN_FIRE_EXPANSION");
bonus2 bSkillAtk,"GN_CART_TORNADO",10*getskilllv("GN_CRAZYWEED");
if (getskilllv("GN_S_PHARMACY") == 10)
bonus bIgnoreDefRace,RC_All;
if (.@r>=5) {
bonus bMaxHPrate,7;
bonus bMaxSPrate,7;
bonus2 bVariableCastrate,"GN_CARTCANNON",-50;
bonus2 bSkillAtk,"GN_CARTCANNON",BaseLevel/2;
}
if (.@r>=7) {
bonus bMaxHPrate,10;
bonus bMaxSPrate,10;
bonus2 bVariableCastrate,"GN_CARTCANNON",-50;
bonus2 bSkillAtk,"GN_CARTCANNON",BaseLevel/2;
}
|
||||