mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-05 03:53:41 +00:00
New Entities and Items for 1.2
This commit is contained in:
parent
f75779aa7a
commit
64d866a77d
3 changed files with 22 additions and 1 deletions
|
@ -38,7 +38,9 @@ public enum Mob
|
||||||
BLAZE("Blaze", Enemies.ENEMY, EntityType.BLAZE),
|
BLAZE("Blaze", Enemies.ENEMY, EntityType.BLAZE),
|
||||||
MUSHROOMCOW("MushroomCow", Enemies.FRIENDLY, EntityType.MUSHROOM_COW),
|
MUSHROOMCOW("MushroomCow", Enemies.FRIENDLY, EntityType.MUSHROOM_COW),
|
||||||
MAGMACUBE("MagmaCube", Enemies.ENEMY, EntityType.MAGMA_CUBE),
|
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");
|
public static final Logger logger = Logger.getLogger("Minecraft");
|
||||||
|
|
||||||
|
|
|
@ -271,5 +271,17 @@ public class Commandspawnmob extends EssentialsCommand
|
||||||
{
|
{
|
||||||
((Creeper)spawned).setPowered(true);
|
((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
|
degg,122,0
|
||||||
bossegg,122,0
|
bossegg,122,0
|
||||||
begg,122,0
|
begg,122,0
|
||||||
|
redstonelamp,123,0
|
||||||
|
redlamp,123,0
|
||||||
|
rslamp,123,0
|
||||||
ironshovel,256,0
|
ironshovel,256,0
|
||||||
ironspade,256,0
|
ironspade,256,0
|
||||||
ishovel,256,0
|
ishovel,256,0
|
||||||
|
@ -2453,6 +2456,10 @@ wolfegg,383,95
|
||||||
mooshroomegg,383,96
|
mooshroomegg,383,96
|
||||||
mushroomcowegg,383,96
|
mushroomcowegg,383,96
|
||||||
villageregg,383,120
|
villageregg,383,120
|
||||||
|
bottleofenchanting,384,0
|
||||||
|
enchantingbottle,384,0
|
||||||
|
expbottle,384,0
|
||||||
|
xpbottle,384,0
|
||||||
goldmusicrecord,2256,0
|
goldmusicrecord,2256,0
|
||||||
goldmusicdisk,2256,0
|
goldmusicdisk,2256,0
|
||||||
goldmusiccd,2256,0
|
goldmusiccd,2256,0
|
||||||
|
|
|
Loading…
Add table
Add a link
Reference in a new issue