Enum Arceuus
- java.lang.Object
-
- java.lang.Enum<Arceuus>
-
- net.eternalclient.api.wrappers.magic.spellbooks.Arceuus
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAutocastValue()
int
getIndex()
int
getRequiredLevel()
java.util.HashMap<Rune,java.lang.Integer>
getRequiredRunes()
SpellBook
getSpellBook()
boolean
isAutocasting()
boolean
requiresTarget()
static Arceuus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Arceuus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface net.eternalclient.api.wrappers.magic.Spell
getOpcode, getPrettyName, getWidgetChild
-
-
-
-
Enum Constant Detail
-
HOME_TELEPORT
public static final Arceuus HOME_TELEPORT
-
BASIC_REANIMATION
public static final Arceuus BASIC_REANIMATION
-
ARCEUUS_LIBRARY_TELEPORT
public static final Arceuus ARCEUUS_LIBRARY_TELEPORT
-
ADEPT_REANIMATION
public static final Arceuus ADEPT_REANIMATION
-
EXPERT_REANIMATION
public static final Arceuus EXPERT_REANIMATION
-
MASTER_REANIMATION
public static final Arceuus MASTER_REANIMATION
-
DRAYNOR_MANOR_TELEPORT
public static final Arceuus DRAYNOR_MANOR_TELEPORT
-
MIND_ALTAR_TELEPORT
public static final Arceuus MIND_ALTAR_TELEPORT
-
RESPAWN_TELEPORT
public static final Arceuus RESPAWN_TELEPORT
-
SALVE_GRAVEYARD_TELEPORT
public static final Arceuus SALVE_GRAVEYARD_TELEPORT
-
FENKENSTRAIN_CASTLE_TELEPORT
public static final Arceuus FENKENSTRAIN_CASTLE_TELEPORT
-
WEST_ARDOUGNE_TELEPORT
public static final Arceuus WEST_ARDOUGNE_TELEPORT
-
HARMONY_ISLAND_TELEPORT
public static final Arceuus HARMONY_ISLAND_TELEPORT
-
CEMETERY_TELEPORT
public static final Arceuus CEMETERY_TELEPORT
-
RESURRECT_CROPS
public static final Arceuus RESURRECT_CROPS
-
BARROWS_TELEPORT
public static final Arceuus BARROWS_TELEPORT
-
APE_ATOLL_TELEPORT
public static final Arceuus APE_ATOLL_TELEPORT
-
BATTLE_FRONT_TELEPORT
public static final Arceuus BATTLE_FRONT_TELEPORT
-
INFERIOR_DEMONBANE
public static final Arceuus INFERIOR_DEMONBANE
-
SUPERIOR_DEMONBANE
public static final Arceuus SUPERIOR_DEMONBANE
-
DARK_DEMONBANE
public static final Arceuus DARK_DEMONBANE
-
MARK_OF_DARKNESS
public static final Arceuus MARK_OF_DARKNESS
-
GHOSTLY_GRASP
public static final Arceuus GHOSTLY_GRASP
-
SKELETAL_GRASP
public static final Arceuus SKELETAL_GRASP
-
UNDEAD_GRASP
public static final Arceuus UNDEAD_GRASP
-
WARD_OF_ARCEUUS
public static final Arceuus WARD_OF_ARCEUUS
-
LESSER_CORRUPTION
public static final Arceuus LESSER_CORRUPTION
-
GREATER_CORRUPTION
public static final Arceuus GREATER_CORRUPTION
-
DEMONIC_OFFERING
public static final Arceuus DEMONIC_OFFERING
-
SINISTER_OFFERING
public static final Arceuus SINISTER_OFFERING
-
DEGRIME
public static final Arceuus DEGRIME
-
SHADOW_VEIL
public static final Arceuus SHADOW_VEIL
-
VILE_VIGOUR
public static final Arceuus VILE_VIGOUR
-
DARK_LURE
public static final Arceuus DARK_LURE
-
DEATH_CHARGE
public static final Arceuus DEATH_CHARGE
-
RESURRECT_LESSER_GHOST
public static final Arceuus RESURRECT_LESSER_GHOST
-
RESURRECT_LESSER_SKELETON
public static final Arceuus RESURRECT_LESSER_SKELETON
-
RESURRECT_LESSER_ZOMBIE
public static final Arceuus RESURRECT_LESSER_ZOMBIE
-
RESURRECT_SUPERIOR_GHOST
public static final Arceuus RESURRECT_SUPERIOR_GHOST
-
RESURRECT_SUPERIOR_SKELETON
public static final Arceuus RESURRECT_SUPERIOR_SKELETON
-
RESURRECT_SUPERIOR_ZOMBIE
public static final Arceuus RESURRECT_SUPERIOR_ZOMBIE
-
RESURRECT_GREATER_GHOST
public static final Arceuus RESURRECT_GREATER_GHOST
-
RESURRECT_GREATER_SKELETON
public static final Arceuus RESURRECT_GREATER_SKELETON
-
RESURRECT_GREATER_ZOMBIE
public static final Arceuus RESURRECT_GREATER_ZOMBIE
-
-
Method Detail
-
values
public static Arceuus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Arceuus c : Arceuus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Arceuus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getSpellBook
public SpellBook getSpellBook()
- Specified by:
getSpellBook
in interfaceSpell
-
getRequiredLevel
public int getRequiredLevel()
- Specified by:
getRequiredLevel
in interfaceSpell
-
requiresTarget
public boolean requiresTarget()
- Specified by:
requiresTarget
in interfaceSpell
-
getRequiredRunes
public java.util.HashMap<Rune,java.lang.Integer> getRequiredRunes()
- Specified by:
getRequiredRunes
in interfaceSpell
-
isAutocasting
public boolean isAutocasting()
- Specified by:
isAutocasting
in interfaceSpell
-
getAutocastValue
public int getAutocastValue()
- Specified by:
getAutocastValue
in interfaceSpell
-
-