Advertisement
skypop

CC EnumMob

Aug 14th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.24 KB | None | 0 0
  1. -- Enum mob entity names
  2. -- by: SukaiPoppuGo = "SukaiPoppuGo"
  3. --
  4. -- Missing: Ender dargon and Wither boss
  5. --
  6. -- NB:
  7. -- This Enum attempt to list mobs entities.
  8. -- But there is a lot more entity types, not only mobs,
  9. -- Minecart, item frame, xp orbs... ex:
  10. -- Item = "Item"
  11. --
  12.  
  13. Bat = "Bat"
  14. Blaze = "Blaze"
  15. CaveSpider = "CaveSpider"
  16. Chicken = "Chicken"
  17. Cow = "Cow"
  18. Creeper = "Creeper"
  19. Donkey = "Donkey"
  20. ElderGuardian = "ElderGuardian"
  21. Enderman = "Enderman"
  22. Endermite = "Endermite"
  23. EvocationIllager = "EvocationIllager"
  24. Husk = "Husk"
  25. Ghast = "Ghast"
  26. Guardian = "Guardian"
  27. Horse = "Horse"
  28. LavaSlime = "LavaSlime"
  29. Llama = "Llama"
  30. Mule = "Mule"
  31. MushroomCow = "MushroomCow"
  32. Stray = "Stray"
  33. Ozelot = "Ozelot"
  34. Pig = "Pig"
  35. PigZombie = "PigZombie"
  36. PolarBear = "PolarBear"
  37. Rabbit = "Rabbit"
  38. Shulker = "Shulker"
  39. Sheep = "Sheep"
  40. Silverfish = "Silverfish"
  41. Skeleton = "Skeleton"
  42. SkeletonHorse = "SkeletonHorse"
  43. Slime = "Slime"
  44. SnowMan = "SnowMan"
  45. Spider = "Spider"
  46. Squid = "Squid"
  47. Vex = "Vex"
  48. Villager = "Villager"
  49. VillagerGolem = "VillagerGolem"
  50. VindicationIllager = "VindicationIllager"
  51. Witch = "Witch"
  52. WitherSkeleton = "WitherSkeleton"
  53. Wolf = "Wolf"
  54. Zombie = "Zombie"
  55. ZombieHorse = "ZombieHorse"
  56. ZombieVillager = "ZombieVillager"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement