Helm of Faith II (Sorcerer)
| Item ID | 400219 | Name | Helm of Faith II (Sorcerer) |
|
A helm with the power of faith.
It has the effect of amplifying the effects of Vivatus and Adulter weapons. _______________________ Base Level at least 210: SPL +2, S.MATK +1. _______________________ Base Level at least 230: SPL +3, S.MATK +2. _______________________ For each 2 Refine Levels: MATK +10 _______________________ For each 3 Refine Levels: Increases damage of Psychic Wave by 15%. _______________________ For each 4 Refine Levels: Increases Magical Damage with Neutral, Wind and Earth element by 7%. _______________________ Refine Level +7: Decreases Variable Casting Time by 5%. _______________________ Refine Level +9: Decreases Fixed Casting Time by 0.2 seconds. _______________________ Refine Level +11: MATK +5% Decreases Fixed Casting Time by additional 0.3 seconds. _______________________ When equipped with Adulter Fides Magic Book: Increases Magical Damage with Neutral element by 10%. For each 3 Refine Levels of Adulter Fides Magic Book: Increases damage of Psychic Wave by 5%. _______________________ When equipped with Vivatus Fides Magic Book: Increases Magical Damage with Neutral, Wind and Earth element by 10%. For each 3 Refine Levels of Vivatus Fides Magic Book: Increases damage of Psychic Wave by 5%. Increases damage of Lightning Land and Terra Drive by 7%. If the Weapon's Grade is C or higher: Increases damage of Lightning Land and Terra Drive by additional 15%. _______________________ Type: Headgear Defense: 10 Position: Upper Weight: 10 Armor Level: 2 _______________________ Requirement: Base Level 180 Sorcerer |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Viva_Adul_Hat_SO2 | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Upper Headgear | ||
| Defense | 10 | Equippable Jobs | Sage | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | Third, Third Upper, Third Baby | ||
| Weight | 10 | Min Equip Level | 180 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine();
if (BaseLevel>=210) {
bonus bSMatk,1;
bonus bSpl,2;
}
if (BaseLevel>=230) {
bonus bSMatk,2;
bonus bSpl,3;
}
if (.@r>=7) {
bonus bVariableCastrate,-10;
if (.@r>=9) {
bonus bFixedCast,-200;
if (.@r>=11) {
bonus bFixedCast,-300;
bonus bMatkRate,5;
}
}
}
bonus bMatk,10*(.@r/2);
bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15*(.@r/3);
bonus2 bMagicAtkEle,Ele_Earth,7*(.@r/4);
bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4);
bonus2 bMagicAtkEle,Ele_Wind,7*(.@r/4);
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bMagicAtkEle,Ele_Neutral,10; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",5*(.@r_weapon/3); |
||||
|
bonus2 bMagicAtkEle,Ele_Earth,10;
bonus2 bMagicAtkEle,Ele_Neutral,10;
bonus2 bMagicAtkEle,Ele_Wind,10;
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"EM_LIGHTNING_LAND",7*(.@r_weapon/3);
bonus2 bSkillAtk,"EM_TERRA_DRIVE",7*(.@r_weapon/3);
bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",5*(.@r_weapon/3);
if (getenchantgrade(EQI_HAND_R) >= ENCHANTGRADE_C) {
bonus2 bSkillAtk,"EM_LIGHTNING_LAND",15;
bonus2 bSkillAtk,"EM_TERRA_DRIVE",15;
}
|