Lineage Justice

Spells & Skills

Lookup and validate skills and spells.

Disease
MP: 10 HP: 0 Item: 40318 Amount: 1 Duration: 64 Skill Type: Curse
Delay: 500 Cast Invis: No Ignores CM: No Element: None Range: 3 Area: N/A
Dmg Value: 0.0 Dmg Dice: 0 Dice Count: 0 Prob Value: 0 Prob Dice: 11 Prob Max: 99
Add Effect:

private static final int AC = 12;
private static final int DMGUP = -6;

@Override
public void addEffect(L1Character user, L1Character target,
		int durationSeconds) {
	target.addDmgup(DMGUP);
	target.addAc(AC);
}
L1Magic Probability:

private static final int AC = 12;
private static final int DMGUP = -6;

@Override
public void addEffect(L1Character user, L1Character target,
		int durationSeconds) {
	target.addDmgup(-DMGUP);
	target.addAc(-AC);
}