Lineage Justice

Spells & Skills

Lookup and validate skills and spells.

ExoticVitalize
MP: 30 HP: 0 Item: 40319 Amount: 1 Duration: 960 Skill Type: Change
Delay: 100 Cast Invis: Yes Ignores CM: Yes Element: Earth Range: N/A Area: N/A
Dmg Value: 0.0 Dmg Dice: 0 Dice Count: 0 Prob Value: 0 Prob Dice: 0 Prob Max: N/A
L1SkillUse Effect:

private boolean isOverWeight(L1PcInstance pc) {
	if (pc.hasSkillEffect(L1SkillId.EXOTIC_VITALIZE)
			|| pc.hasSkillEffect(L1SkillId.ADDITIONAL_FIRE)
			|| pc.hasSkillEffect(L1SkillId.AWAKEN_FAFURION)) {
		return false;
	}
	if (pc.getInventory().checkEquipped(20049)) {
		return false;
	}
	return 120 <= pc.getInventory().getWeight240();
}