Southern Cross
| Item ID | 28201 | Name | Southern Cross |
|
This grenade launcher is named after the Southern Cross, which symbolizes death.
_______________________ Random chance to auto-cast Level 1 Cross Impact on the target when dealing physical damage. _______________________ Random chance to inflict Curse on the target when dealing physical damage. _______________________ Type: Grenade Launcher Attack: 480 Weight: 200 Weapon Level: 3 _______________________ Requirement: Base Level 141 Rebellion |
|---|---|---|---|---|---|
| Weapon Level | 3 | Identifier | Southern_Cross_R | ||
| Attack | 480 | Type | Weapon - Grenade Launcher | ||
| MATK | 0 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Gunslinger, Rebellion | ||
| Range | 9 | Equip Gender | Both (Male and Female) | ||
| Slots | 0 | Equip Upper | None | ||
| Weight | 200 | Min Equip Level | 141 | ||
| NPC Buy | 2,800,000 | Max Equip Level | None | ||
| NPC Sell | 1,400,000 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
bonus2 bAddEff,Eff_Curse,300; bonus4 bAutoSpell,"KO_JYUMONJIKIRI",1,100,1; |
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_HAND_R);
.@dmg = 2;
if (.@r >= 5) {
.@dmg += 3;
.@def = -5;
if (.@r >= 7) {
.@dmg += 4;
.@def -= 5;
}
bonus2 bSubClass,Class_Normal,.@def;
}
bonus2 bMagicAddClass,Class_Boss,.@dmg;
|