May someone please compose a list of all the 1.1 mobs?

Discussion in 'Plugin Development' started by T145, Jan 25, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    T145

    I know it sounds simple and kind of pathetic, but I don't currently have enough time to compile one myself, so it would be a great help if someone could post all of the 1.1 mobs in alphabetical order in a comment! Thanks!
     
  2. Offline

    AbeJ

    Not exactly what you want, but if anyone wants the code for a HashMap of CB entity class -> entity name, here it is. It has every CraftEntity (at least every one in the org.bukkit.craftbukkit.entity package), painstakingly written by me.

    Please feel free to laugh at me if such a thing already exists in an easy-to-find location.

    Code:java
    1. HashMap<Class, String> entityList = new HashMap<Class, String>();
    2.  
    3. entityList.put(AbstractProjectile.class, "Projectile");
    4. entityList.put(CraftAnimals.class, "Animal");
    5. entityList.put(CraftArrow.class, "Arrow");
    6. entityList.put(CraftBlaze.class, "Blaze");
    7. entityList.put(CraftBoat.class, "Boat");
    8. entityList.put(CraftCaveSpider.class, "Cave Spider");
    9. entityList.put(CraftChicken.class, "Chicken");
    10. entityList.put(CraftBlaze.class, "Blaze");
    11. entityList.put(CraftComplexLivingEntity.class, "Dragon");
    12. entityList.put(CraftComplexPart.class, "Dragon");
    13. entityList.put(CraftCow.class, "Cow");
    14. entityList.put(CraftCreature.class, "Creature");
    15. entityList.put(CraftCreeper.class, "Creeper");
    16. entityList.put(CraftEgg.class, "Egg");
    17. entityList.put(CraftEnderCrystal.class, "Ender Crystal");
    18. entityList.put(CraftEnderDragon.class, "Enderdragon");
    19. entityList.put(CraftEnderDragonPart.class, "Enderdragon");
    20. entityList.put(CraftEnderman.class, "Enderman");
    21. entityList.put(CraftEnderPearl.class, "Ender Pearl");
    22. entityList.put(CraftEnderSignal.class, "Ender Signal");
    23. entityList.put(CraftEntity.class, "Object");
    24. entityList.put(CraftExperienceOrb.class, "Experience Orb");
    25. entityList.put(CraftFallingSand.class, "Falling Block");
    26. entityList.put(CraftFireball.class, "Ghast Fireball");
    27. entityList.put(CraftFish.class, "Fish");
    28. entityList.put(CraftFlying.class, "Flying Monster");
    29. entityList.put(CraftGhast.class, "Ghast");
    30. entityList.put(CraftGiant.class, "Giant");
    31. entityList.put(CraftHumanEntity.class, "Human");
    32. entityList.put(CraftItem.class, "Item");
    33. entityList.put(CraftLightningStrike.class, "Lightning");
    34. entityList.put(CraftLivingEntity.class, "Mob");
    35. entityList.put(CraftMagmaCube.class, "Magma Cube");
    36. entityList.put(CraftMinecart.class, "Minecart");
    37. entityList.put(CraftMonster.class, "Monster");
    38. entityList.put(CraftMushroomCow.class, "Mooshroom");
    39. entityList.put(CraftPainting.class, "Painting");
    40. entityList.put(CraftPig.class, "Pig");
    41. entityList.put(CraftPigZombie.class, "Zombie Pigman");
    42. entityList.put(CraftPlayer.class, "Player");
    43. entityList.put(CraftPoweredMinecart.class, "Powered Minecart");
    44. entityList.put(CraftProjectile.class, "Projectile");
    45. entityList.put(CraftSheep.class, "Sheep");
    46. entityList.put(CraftSilverfish.class, "Silverfish");
    47. entityList.put(CraftSkeleton.class, "Skeleton");
    48. entityList.put(CraftSlime.class, "Slime");
    49. entityList.put(CraftSmallFireball.class, "Blaze Fireball");
    50. entityList.put(CraftSnowball.class, "Snowball");
    51. entityList.put(CraftSnowman.class, "Snow Golem");
    52. entityList.put(CraftSpider.class, "Spider");
    53. entityList.put(CraftSquid.class, "Squid");
    54. entityList.put(CraftStorageMinecart.class, "Storage Minecart");
    55. entityList.put(CraftThrownPotion.class, "Splash Potion");
    56. entityList.put(CraftTNTPrimed.class, "TNT");
    57. entityList.put(CraftVehicle.class, "Vehicle");
    58. entityList.put(CraftVillager.class, "Villager");
    59. entityList.put(CraftWaterMob.class, "Water Mob");
    60. entityList.put(CraftWeather.class, "Weather");
    61. entityList.put(CraftWolf.class, "Wolf");
    62. entityList.put(CraftZombie.class, "Zombie");
     
Thread Status:
Not open for further replies.

Share This Page