Minecraft-Console-Client/MinecraftClient/Mapping/EntityType.cs

114 lines
2 KiB
C#
Raw Normal View History

2020-03-26 15:01:42 +08:00
namespace MinecraftClient.Mapping
{
public enum EntityType
{
AreaEffectCloud,
ArmorStand,
Arrow,
Bat,
Bee,
Blaze,
Boat,
Cat,
CaveSpider,
Chicken,
Cod,
Cow,
Creeper,
Dolphin,
Donkey,
DragonFireball,
Drowned,
ElderGuardian,
EndCrystal,
EnderDragon,
Enderman,
Endermite,
Evoker,
EvokerFangs,
ExperienceOrb,
EyeOfEnder,
FallingBlock,
FireworkRocket,
Fox,
Ghast,
Giant,
Guardian,
Hoglin,
Horse,
Husk,
Illusioner,
IronGolem,
Item,
ItemFrame,
Fireball,
LeashKnot,
LightningBolt,
Llama,
LlamaSpit,
MagmaCube,
Minecart,
ChestMinecart,
CommandBlockMinecart,
FurnaceMinecart,
HopperMinecart,
SpawnerMinecart,
TntMinecart,
Mule,
Mooshroom,
Ocelot,
Painting,
Panda,
Parrot,
Phantom,
Pig,
Piglin,
Pillager,
PolarBear,
Tnt,
Pufferfish,
Rabbit,
Ravager,
Salmon,
Sheep,
Shulker,
ShulkerBullet,
Silverfish,
Skeleton,
SkeletonHorse,
Slime,
SmallFireball,
SnowGolem,
Snowball,
SpectralArrow,
Spider,
Squid,
Stray,
Strider,
Egg,
EnderPearl,
ExperienceBottle,
Potion,
Trident,
TraderLlama,
TropicalFish,
Turtle,
Vex,
Villager,
Vindicator,
WanderingTrader,
Witch,
Wither,
WitherSkeleton,
WitherSkull,
Wolf,
Zoglin,
Zombie,
ZombieHorse,
ZombieVillager,
ZombiePigman,
2020-03-26 15:01:42 +08:00
Player,
FishingBobber,
2020-03-26 15:01:42 +08:00
}
}