/******************************************************************************* * Copyright (C) 2013 JMaNGOS <http://jmangos.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. ******************************************************************************/ package org.jmangos.commons.enums; /** * The Enum CombatRating. */ public enum CombatRating { /** The WEAPON_SKILL. */ WEAPON_SKILL, /** The DEFENSE_SKILL. */ DEFENSE_SKILL, /** The DODGE. */ DODGE, /** The PARRY . */ PARRY, /** The BLOCK. */ BLOCK, /** The HIT_MELEE. */ HIT_MELEE, /** The HIT_RANGED. */ HIT_RANGED, /** The HIT_SPELL. */ HIT_SPELL, /** The CRIT_MELEE. */ CRIT_MELEE, /** The CRIT_RANGED. */ CRIT_RANGED, /** The CRIT_SPELL. */ CRIT_SPELL, /** The HIT_TAKEN_MELEE. */ HIT_TAKEN_MELEE, /** The HIT_TAKEN_RANGED. */ HIT_TAKEN_RANGED, /** The HIT_TAKEN_SPELL. */ HIT_TAKEN_SPELL, /** The CRIT_TAKEN_MELEE. */ CRIT_TAKEN_MELEE, /** The CRIT_TAKEN_RANGED. */ CRIT_TAKEN_RANGED, /** The CRIT_TAKEN_SPELL. */ CRIT_TAKEN_SPELL, /** The HASTE_MELEE. */ HASTE_MELEE, /** The HASTE_RANGED. */ HASTE_RANGED, /** The HASTE_SPELL. */ HASTE_SPELL, /** The WEAPON_SKILL_MAINHAND. */ WEAPON_SKILL_MAINHAND, /** The WEAPON_SKILL_OFFHAND. */ WEAPON_SKILL_OFFHAND, /** The WEAPON_SKILL_RANGED. */ WEAPON_SKILL_RANGED, /** The EXPERTISE. */ EXPERTISE, /** The ARMOR_PENETRATION. */ ARMOR_PENETRATION, /** The MAX_COMBAT_RATING. */ MAX_COMBAT_RATING; }