Lineage Justice

Spells & Skills

Lookup and validate skills and spells.

WindShackle
MP: 15 HP: 0 Item: 40319 Amount: 1 Duration: 16 Skill Type: Probability
Delay: 100 Cast Invis: No Ignores CM: No Element: Wind Range: 8 Area: N/A
Dmg Value: 0.0 Dmg Dice: 0 Dice Count: 0 Prob Value: 33 Prob Dice: 30 Prob Max: 99
Add Effect:

@Override
public void addEffect(L1Character user, L1Character target,
		int durationSeconds) {
	if (!(target instanceof L1PcInstance)) {
		return;
	}

	L1PcInstance pc = (L1PcInstance) target;
	pc.sendPackets(new S_SkillIconWindShackle(pc.getId(), durationSeconds));
	pc.broadcastPacket(new S_SkillIconWindShackle(pc.getId(),
			durationSeconds));
}
Remove Effect:

@Override
public void removeEffect(L1Character target) {
	addEffect(null, target, 0);
}