Package noppes.npcs.api.jobs
Interface IJobSpawner
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IEntityLivingBase<?>
getEntity(int number, int x, int y, int z, IWorld world)
IEntityLivingBase<?>
getEntity(int number, IPos pos, IWorld world)
IEntityLivingBase<?>[]
getNearbySpawned()
boolean
hasPixelmon()
boolean
isEmpty()
boolean
isOnCooldown(IPlayer<net.minecraft.entity.player.EntityPlayerMP> player)
void
removeAllSpawned()
Removes all spawned entitiesvoid
setEntity(int number, IEntityLivingBase<?> entityLivingBase)
IEntityLivingBase<?>
spawnEntity(int number)
-
-
-
Method Detail
-
spawnEntity
IEntityLivingBase<?> spawnEntity(int number)
-
getEntity
IEntityLivingBase<?> getEntity(int number, int x, int y, int z, IWorld world)
-
getEntity
IEntityLivingBase<?> getEntity(int number, IPos pos, IWorld world)
-
setEntity
void setEntity(int number, IEntityLivingBase<?> entityLivingBase)
-
removeAllSpawned
void removeAllSpawned()
Removes all spawned entities
-
getNearbySpawned
IEntityLivingBase<?>[] getNearbySpawned()
-
hasPixelmon
boolean hasPixelmon()
-
isEmpty
boolean isEmpty()
-
isOnCooldown
boolean isOnCooldown(IPlayer<net.minecraft.entity.player.EntityPlayerMP> player)
-
-