Lineage Justice

Spells & Skills

Lookup and validate skills and spells.

Strikers Gale
MP: 15 HP: 0 Item: 40319 Amount: 3 Duration: 192 Skill Type: Probability
Delay: 3000 Cast Invis: No Ignores CM: No Element: Wind Range: 6 Area: N/A
Dmg Value: 0.0 Dmg Dice: 0 Dice Count: 0 Prob Value: 33 Prob Dice: 30 Prob Max: 99
L1PcInstance Get ER:

public int getEr() {
	if (hasSkillEffect(STRIKER_GALE)) {
		return 0;
	}

	int er = getClassFeature().getER(getLevel());

	er += (getDex() - 8) / 2;

	er += getOriginalEr();

	if (hasSkillEffect(DRESS_EVASION)) {
		er += 12;
	}
	if (hasSkillEffect(AQUA_PROTECTER)) {
		er += 5;
	}
	if (hasSkillEffect(SOLID_CARRIAGE)) {
		er += 15;
	}
	return er;
}