Lineage Justice
Spells & Skills
Lookup and validate skills and spells.
|
Poison
|
MP:
|
10
|
HP:
|
0
|
Item:
|
40318
|
Amount:
|
1
|
Duration:
|
192
|
Skill Type:
|
Curse
|
Delay:
|
500
|
Cast Invis:
|
No
|
Ignores CM:
|
No
|
Element:
|
Water
|
Range:
|
1
|
Area:
|
N/A
|
Dmg Value:
|
0.0
|
Dmg Dice:
|
0
|
Dice Count:
|
0
|
Prob Value:
|
0
|
Prob Dice:
|
12
|
Prob Max:
|
99
|
L1SkillUse Execution:
public static boolean doInfection(L1Character attacker, L1Character cha,
int damageSpan, int damage) {
if (!isValidTarget(cha)) {
return false;
}
cha.setPoison(new L1DamagePoison(attacker, cha, damageSpan, damage));
return true;
}