Master Soul Rifle-LT
| Item ID | 810009 | Name | Master Soul Rifle-LT |
|
An improved version of the rifle imbued with the power of the soul used by those who have reached the level of a Gunmaster who can handle all firearms skillfully.
Resonates with Hero's Boots-LT. _______________________ MATK +250 _______________________ Base Level at least 210: SPL +2, S.MATK +1. _______________________ For each 2 Refine Levels: MATK +15 _______________________ For each 3 Refine Levels: Increases damage of Soul Strike and Napalm Vulcan by 20%. _______________________ Refine Level +7: Increases damage of Soul Expansion by 40%. Increases Magical Damage with Ghost element by 25%. _______________________ Refine Level +9: Ranged physical attacks have a 15% chance to auto-cast Level 10 Soul Strike, Level 5 Napalm Vulcan or Level 5 Soul Expansion. _______________________ Refine Level +11: Increases damage of Soul Expansion by additional 30%. Increases Magical Damage against enemies of every size by 15%. _______________________ When equipped with Hero's Boots-LT: MATK +10%, S.MATK +2. _______________________ [Bonus by Grade] [Grade D]: MATK +3% [Grade C]: Magical Damage with Ghost element +15%. S.MATK +1 [Grade B]: SPL +3, S.MATK +2. _______________________ Type: Rifle Attack: 200 Weight: 100 Weapon Level: 5 _______________________ Requirement: Base Level 190 Rebellion classes |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | Master_Soul_Rifle_LT | ||
| Attack | 200 | Type | Weapon - Rifle | ||
| MATK | 0 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Gunslinger, Rebellion | ||
| Range | 9 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 100 | Min Equip Level | 190 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@g = getenchantgrade();
.@r = getrefine();
bonus bMatk,250;
if (BaseLevel>=210) {
bonus bSMatk,1;
bonus bSpl,2;
}
if (.@r>=7) {
bonus2 bMagicAtkEle,Ele_Ghost,25;
bonus2 bSkillAtk,"WL_SOULEXPANSION",40;
if (.@r>=9) {
bonus5 bAutoSpell,"MG_SOULSTRIKE",5,150,BF_LONG|BF_WEAPON,1;
bonus5 bAutoSpell,"WL_SOULEXPANSION",5,150,BF_LONG|BF_WEAPON,1;
bonus5 bAutoSpell,"HW_NAPALMVULCAN",5,150,BF_LONG|BF_WEAPON,1;
if (.@r>=11) {
bonus2 bMagicAddSize,Size_All,15;
bonus2 bSkillAtk,"WL_SOULEXPANSION",30;
}
}
}
if (.@g >= ENCHANTGRADE_D) {
bonus bMatkRate,3;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bMagicAtkEle,Ele_Ghost,15;
bonus bSMatk,1;
if (.@g >= ENCHANTGRADE_B) {
bonus bSMatk,2;
bonus bSpl,3;
}
}
}
bonus bMatk,15*(.@r/2);
bonus2 bSkillAtk,"MG_SOULSTRIKE",20*(.@r/3);
bonus2 bSkillAtk,"HW_NAPALMVULCAN",20*(.@r/3);
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus bSMatk,2; bonus bMatkRate,10; |
||||
|
bonus2 bAddSize,Size_All,15;
bonus2 bMagicAddSize,Size_All,15;
if (getequiprefinerycnt(EQI_HAND_R) >= 10) {
bonus bAspdRate,15;
bonus2 bSkillAtk,"NW_HASTY_FIRE_IN_THE_HOLE",10;
bonus2 bSkillAtk,"NW_BASIC_GRENADE",10;
}
if (getenchantgrade(EQI_HAND_R) >= ENCHANTGRADE_C) {
bonus bPAtk,5;
bonus bPow,5;
bonus2 bSkillAtk,"NW_HASTY_FIRE_IN_THE_HOLE",10;
bonus2 bSkillAtk,"NW_BASIC_GRENADE",10;
}
|