Enum-Klasse Npcs.LootType

java.lang.Object
java.lang.Enum<Npcs.LootType>
net.risingworld.api.definitions.Npcs.LootType
Alle implementierten Schnittstellen:
Serializable, Comparable<Npcs.LootType>, Constable
Umschließende Klasse:
Npcs

public static enum Npcs.LootType extends Enum<Npcs.LootType>
Enum containing the loot types of the npc, i.e how it can be looted specifically
  • Enum-Konstanten - Details

    • None

      public static final Npcs.LootType None
      Npc it not lootable
    • Inventory

      public static final Npcs.LootType Inventory
      Npc corpse has a lootable inventory
    • Skinning

      public static final Npcs.LootType Skinning
      Npc needs to be skinned with a knife first in order to drop the loot
    • Drop

      public static final Npcs.LootType Drop
      Npc drops the loot upon death
    • Interaction

      public static final Npcs.LootType Interaction
      Loot can be gathered by interacting with the npc
  • Felddetails

    • value

      public final int value
  • Methodendetails

    • values

      public static Npcs.LootType[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static Npcs.LootType valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird
    • get

      public static Npcs.LootType get(int value)