MobCategory
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.entity.MobCategory;
Implements
MobCategory
implements the following interfaces:
Undocumented Interfaces
IExtensibleEnum
,Comparable<Enum>
Enum Constants
MobCategory is an enum with 8 constants. They are accessible like so:
// MobCategory.AMBIENT<constant:minecraft:mobcategory:ambient>// MobCategory.AXOLOTLS<constant:minecraft:mobcategory:axolotls>// MobCategory.CREATURE<constant:minecraft:mobcategory:creature>// MobCategory.MISC<constant:minecraft:mobcategory:misc>// MobCategory.MONSTER<constant:minecraft:mobcategory:monster>// MobCategory.UNDERGROUND_WATER_CREATURE<constant:minecraft:mobcategory:underground_water_creature>// MobCategory.WATER_AMBIENT<constant:minecraft:mobcategory:water_ambient>// MobCategory.WATER_CREATURE<constant:minecraft:mobcategory:water_creature>
Members
// MobCategory.despawnDistance as int<constant:minecraft:mobcategory:ambient>.despawnDistance
Return Type:
int
Returns: The despawn distance of the mob category.
// MobCategory.despawnDistance() as int;<constant:minecraft:mobcategory:ambient>.despawnDistance();
Return Type:
int
// MobCategory.friendly as bool<constant:minecraft:mobcategory:ambient>.friendly
Return Type:
bool
Returns: True if the mob category is friendly.
// MobCategory.friendly() as bool;<constant:minecraft:mobcategory:ambient>.friendly();
Return Type:
bool
Returns: The name of the mob category.
// MobCategory.getName() as string;<constant:minecraft:mobcategory:ambient>.getName();
Return Type:
string
// MobCategory.maxInstancesPerChunk as int<constant:minecraft:mobcategory:ambient>.maxInstancesPerChunk
Return Type:
int
Returns: The maximum number of instances per chunk.
// MobCategory.maxInstancesPerChunk() as int;<constant:minecraft:mobcategory:ambient>.maxInstancesPerChunk();
Return Type:
int
// MobCategory.noDespawnDistance as int<constant:minecraft:mobcategory:ambient>.noDespawnDistance
Return Type:
int
Returns: The no despawn distance of the mob category.
// MobCategory.noDespawnDistance() as int;<constant:minecraft:mobcategory:ambient>.noDespawnDistance();
Return Type:
int
// MobCategory.persistent as bool<constant:minecraft:mobcategory:ambient>.persistent
Return Type:
bool
Returns: True if the mob category is persistent.
// MobCategory.persistent() as bool;<constant:minecraft:mobcategory:ambient>.persistent();
Return Type:
bool
// MobCategory.serializedName as string<constant:minecraft:mobcategory:ambient>.serializedName
Return Type:
string
Returns: the serialized name.
// MobCategory.serializedName() as string;<constant:minecraft:mobcategory:ambient>.serializedName();
Return Type:
string