mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-03 01:19:58 +01:00
New Entities and Items for 1.2
This commit is contained in:
parent
f75779aa7a
commit
64d866a77d
@ -38,7 +38,9 @@ public enum Mob
|
||||
BLAZE("Blaze", Enemies.ENEMY, EntityType.BLAZE),
|
||||
MUSHROOMCOW("MushroomCow", Enemies.FRIENDLY, EntityType.MUSHROOM_COW),
|
||||
MAGMACUBE("MagmaCube", Enemies.ENEMY, EntityType.MAGMA_CUBE),
|
||||
SNOWMAN("Snowman", Enemies.FRIENDLY, "", EntityType.SNOWMAN);
|
||||
SNOWMAN("Snowman", Enemies.FRIENDLY, "", EntityType.SNOWMAN),
|
||||
OCELOT("Ocelot", Enemies.NEUTRAL, EntityType.OCELOT),
|
||||
IRONGOLEM("IronGolem", Enemies.NEUTRAL, EntityType.IRON_GOLEM);
|
||||
|
||||
public static final Logger logger = Logger.getLogger("Minecraft");
|
||||
|
||||
|
@ -271,5 +271,17 @@ public class Commandspawnmob extends EssentialsCommand
|
||||
{
|
||||
((Creeper)spawned).setPowered(true);
|
||||
}
|
||||
if (type == EntityType.OCELOT && data.equalsIgnoreCase("siamese"))
|
||||
{
|
||||
((Ocelot)spawned).setCatType(Ocelot.Type.SIAMESE_CAT);
|
||||
}
|
||||
if (type == EntityType.OCELOT && data.equalsIgnoreCase("red"))
|
||||
{
|
||||
((Ocelot)spawned).setCatType(Ocelot.Type.RED_CAT);
|
||||
}
|
||||
if (type == EntityType.OCELOT && data.equalsIgnoreCase("black"))
|
||||
{
|
||||
((Ocelot)spawned).setCatType(Ocelot.Type.BLACK_CAT);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1461,6 +1461,9 @@ dragonegg,122,0
|
||||
degg,122,0
|
||||
bossegg,122,0
|
||||
begg,122,0
|
||||
redstonelamp,123,0
|
||||
redlamp,123,0
|
||||
rslamp,123,0
|
||||
ironshovel,256,0
|
||||
ironspade,256,0
|
||||
ishovel,256,0
|
||||
@ -2453,6 +2456,10 @@ wolfegg,383,95
|
||||
mooshroomegg,383,96
|
||||
mushroomcowegg,383,96
|
||||
villageregg,383,120
|
||||
bottleofenchanting,384,0
|
||||
enchantingbottle,384,0
|
||||
expbottle,384,0
|
||||
xpbottle,384,0
|
||||
goldmusicrecord,2256,0
|
||||
goldmusicdisk,2256,0
|
||||
goldmusiccd,2256,0
|
||||
|
|
Loading…
Reference in New Issue
Block a user