net.minecraft.entity.passive.EntityParrot Java Examples

The following examples show how to use net.minecraft.entity.passive.EntityParrot. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BiomeMiniJungle.java    From CommunityMod with GNU Lesser General Public License v2.1 5 votes vote down vote up
public BiomeMiniJungle() {
    super(properties);
    decorator.treesPerChunk = 30;
    decorator.flowersPerChunk = 5;
    decorator.grassPerChunk = 25;
    decorator.reedsPerChunk = 2;
    decorator.clayPerChunk = 3;
    decorator.waterlilyPerChunk = 12;

    this.spawnableMonsterList.add(new Biome.SpawnListEntry(EntityOcelot.class, 1, 1, 1));
    this.spawnableCreatureList.add(new Biome.SpawnListEntry(EntityChicken.class, 4, 4, 4));
    this.spawnableCreatureList.add(new Biome.SpawnListEntry(EntityParrot.class, 40, 1, 2));

}
 
Example #2
Source File: BiomeMiniJungle.java    From Traverse-Legacy-1-12-2 with MIT License 5 votes vote down vote up
public BiomeMiniJungle() {
    super(properties);
    decorator.treesPerChunk = 30;
    decorator.flowersPerChunk = 5;
    decorator.grassPerChunk = 25;
    decorator.reedsPerChunk = 2;
    decorator.clayPerChunk = 3;
    decorator.waterlilyPerChunk = 12;

    this.spawnableMonsterList.add(new Biome.SpawnListEntry(EntityOcelot.class, 1, 1, 1));
    this.spawnableCreatureList.add(new Biome.SpawnListEntry(EntityChicken.class, 4, 4, 4));
    this.spawnableCreatureList.add(new Biome.SpawnListEntry(EntityParrot.class, 40, 1, 2));

}
 
Example #3
Source File: CraftParrot.java    From Kettle with GNU General Public License v3.0 4 votes vote down vote up
public CraftParrot(CraftServer server, EntityParrot parrot) {
    super(server, parrot);
}
 
Example #4
Source File: CraftParrot.java    From Kettle with GNU General Public License v3.0 4 votes vote down vote up
@Override
public EntityParrot getHandle() {
    return (EntityParrot) entity;
}