Lineage Justice

Spells & Skills

Lookup and validate skills and spells.

HorrorOfDeath
MP: 0 HP: 20 Item: None Amount: N/A Duration: 32 Skill Type: Probability
Delay: 1000 Cast Invis: No Ignores CM: No Element: None Range: 5 Area: N/A
Dmg Value: 0.0 Dmg Dice: 0 Dice Count: 0 Prob Value: 0 Prob Dice: 26 Prob Max: 40
Add Effect:

private static final int _str = -3;
private static final int _int = -3;

@Override
public void addEffect(L1Character user, L1Character target,
		int durationSeconds) {
	target.addStr(_str);
	target.addInt(_int);
}
Remove Effect:

private static final int _str = -3;
private static final int _int = -3;

@Override
public void removeEffect(L1Character target) {
	target.addStr(-_str);
	target.addInt(-_int);
}