Package org.rspeer.game.component.tdi
Enum Spell.Ancient
- java.lang.Object
-
- java.lang.Enum<Spell.Ancient>
-
- org.rspeer.game.component.tdi.Spell.Ancient
-
- All Implemented Interfaces:
Serializable,Comparable<Spell.Ancient>,Spell
- Enclosing interface:
- Spell
public static enum Spell.Ancient extends Enum<Spell.Ancient> implements Spell
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.rspeer.game.component.tdi.Spell
Spell.Ancient, Spell.Arceuus, Spell.Lunar, Spell.Modern
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description InterfaceAddressgetAddress()doublegetBaseExperience()intgetBaseMaxHit()Magic.BookgetBook()intgetDisabledMaterialId()intgetLevelRequired()intgetSpellIndex()booleanisAutoCasted()StringtoString()static Spell.AncientvalueOf(String name)Returns the enum constant of this type with the specified name.static Spell.Ancient[]values()Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Methods inherited from interface org.rspeer.game.component.tdi.Spell
getItemDefinition, getName
-
-
-
-
Enum Constant Detail
-
ANCIENT_HOME_TELEPORT
public static final Spell.Ancient ANCIENT_HOME_TELEPORT
-
SMOKE_RUSH
public static final Spell.Ancient SMOKE_RUSH
-
SHADOW_RUSH
public static final Spell.Ancient SHADOW_RUSH
-
PADDEWWA_TELEPORT
public static final Spell.Ancient PADDEWWA_TELEPORT
-
BLOOD_RUSH
public static final Spell.Ancient BLOOD_RUSH
-
ICE_RUSH
public static final Spell.Ancient ICE_RUSH
-
SENNTISTEN_TELEPORT
public static final Spell.Ancient SENNTISTEN_TELEPORT
-
SMOKE_BURST
public static final Spell.Ancient SMOKE_BURST
-
SHADOW_BURST
public static final Spell.Ancient SHADOW_BURST
-
KHARYRLL_TELEPORT
public static final Spell.Ancient KHARYRLL_TELEPORT
-
BLOOD_BURST
public static final Spell.Ancient BLOOD_BURST
-
ICE_BURST
public static final Spell.Ancient ICE_BURST
-
LASSAR_TELEPORT
public static final Spell.Ancient LASSAR_TELEPORT
-
SMOKE_BLITZ
public static final Spell.Ancient SMOKE_BLITZ
-
SHADOW_BLITZ
public static final Spell.Ancient SHADOW_BLITZ
-
DAREEYAK_TELEPORT
public static final Spell.Ancient DAREEYAK_TELEPORT
-
BLOOD_BLITZ
public static final Spell.Ancient BLOOD_BLITZ
-
ICE_BLITZ
public static final Spell.Ancient ICE_BLITZ
-
CARRALLANGAR_TELEPORT
public static final Spell.Ancient CARRALLANGAR_TELEPORT
-
TELEPORT_TO_BOUNTY_TARGET
public static final Spell.Ancient TELEPORT_TO_BOUNTY_TARGET
-
SMOKE_BARRAGE
public static final Spell.Ancient SMOKE_BARRAGE
-
SHADOW_BARRAGE
public static final Spell.Ancient SHADOW_BARRAGE
-
ANNAKARL_TELEPORT
public static final Spell.Ancient ANNAKARL_TELEPORT
-
BLOOD_BARRAGE
public static final Spell.Ancient BLOOD_BARRAGE
-
ICE_BARRAGE
public static final Spell.Ancient ICE_BARRAGE
-
GHORROCK_TELEPORT
public static final Spell.Ancient GHORROCK_TELEPORT
-
-
Method Detail
-
values
public static Spell.Ancient[] 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 (Spell.Ancient c : Spell.Ancient.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Spell.Ancient valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getBook
public Magic.Book getBook()
-
getLevelRequired
public int getLevelRequired()
- Specified by:
getLevelRequiredin interfaceSpell
-
getBaseExperience
public double getBaseExperience()
- Specified by:
getBaseExperiencein interfaceSpell
-
getBaseMaxHit
public int getBaseMaxHit()
- Specified by:
getBaseMaxHitin interfaceSpell
-
getDisabledMaterialId
public int getDisabledMaterialId()
- Specified by:
getDisabledMaterialIdin interfaceSpell
-
isAutoCasted
public boolean isAutoCasted()
- Specified by:
isAutoCastedin interfaceSpell
-
getAddress
public InterfaceAddress getAddress()
- Specified by:
getAddressin interfaceSpell
-
getSpellIndex
public int getSpellIndex()
- Specified by:
getSpellIndexin interfaceSpell
-
toString
public String toString()
- Overrides:
toStringin classEnum<Spell.Ancient>
-
-