Greenhouses/src/main/resources/biomes.yml

306 lines
7.8 KiB
YAML
Raw Normal View History

2019-01-19 16:52:04 +01:00
# This file lists the recipes for the greenhouse biomes
biomes:
# Biome recipe name - can be anything you like, but must be unique
beaches:
# The name of the icon. Can use & for color codes, e.g. &c
friendlyname: "Beach"
# The biome of the recipe. Allows multiple recipes for the same biome.
2019-01-22 00:44:01 +01:00
biome: BEACH
2019-01-19 16:52:04 +01:00
# The icon is shown in the panel. It must be a Bukkit Material
icon: SAND
# Priority is used if the greenhouse can be more than one biome. The highest
# priority wins
priority: 0
# Contents - The minimum requirement for this biome.
2019-01-22 00:44:01 +01:00
# Format is Material: Number of blocks
contents:
SAND: 1
2019-01-19 16:52:04 +01:00
# The number of blocks in the greenhouse that must be water, ice or lava
# Floor area * this % = number of blocks required
watercoverage: 50
# If the value is zero, then NO ice/water/lava is allowed
# If the values are missing, or negative, then ice/water/lava is allowed, but not
# required for the biome.
# icecoverage: 0
# lavacoverage: 0
# Plants that can grow via the hopper/bonemeal system
# Format is:
# Material:Type(optional): % chance:Block type on which it can grow
# Note that with really small greenhouses, melons and pumpkins can change
# grass to dirt, which may break the eco system!
plants:
DEAD_BUSH: 5:SAND
# Mobs that may spawn.
# Format:
# Entity name: % chance:Block on which the mob will spawn
mobs:
2019-01-22 00:44:01 +01:00
SQUID: 10:WATER
2019-01-19 16:52:04 +01:00
# The minimum number of blocks each mob requires.
# Mobs will not spawn if there is more than 1 per this number of
# blocks in the greenhouse. e.g., in this case only 2 mobs will spawn if the
# greenhouse area is 18 blocks
moblimit: 9
Snowy_beach:
friendlyname: "Snowy beach"
2019-01-22 00:44:01 +01:00
biome: SNOWY_BEACH
2019-01-19 16:52:04 +01:00
icon: SNOW_BLOCK
priority: 21
2019-01-22 00:44:01 +01:00
contents:
SAND: 1
2019-01-19 16:52:04 +01:00
watercoverage: 50
icecoverage: 10
ThreeWolfMoon:
friendlyname: "Three Wolf Moon Forest"
# Could do with more wolves, but the magic works with 3.
2019-01-22 00:44:01 +01:00
biome: TAIGA
icon: SPRUCE_SAPLING
2019-01-19 16:52:04 +01:00
priority: 20
2019-01-22 00:44:01 +01:00
contents:
SPRUCE_LOG: 3
SPRUCE_LEAVES: 3
GRASS_BLOCK: 3
2019-01-19 16:52:04 +01:00
icecoverage: 10
plants:
TALL_GRASS: 10:GRASS_BLOCK
2019-01-19 16:52:04 +01:00
mobs:
WOLF: 10:SNOW
moblimit: 9
Cold_Rabbit:
friendlyname: "Cold Taiga Forest"
2021-12-21 23:28:31 +01:00
biome: OLD_GROWTH_SPRUCE_TAIGA
2019-01-22 00:44:01 +01:00
icon: SPRUCE_SAPLING
2019-01-19 16:52:04 +01:00
priority: 20
2019-01-22 00:44:01 +01:00
contents:
SPRUCE_LOG: 3
SPRUCE_LEAVES: 3
GRASS_BLOCK: 3
2019-01-19 16:52:04 +01:00
icecoverage: 10
plants:
TALL_GRASS: 10:GRASS_BLOCK
2019-01-19 16:52:04 +01:00
mobs:
RABBIT: 10:SNOW
moblimit: 9
DESERT:
friendlyname: "Desert"
2019-01-22 00:44:01 +01:00
biome: DESERT
2019-01-19 16:52:04 +01:00
icon: DEAD_BUSH
priority: 3
2019-01-22 00:44:01 +01:00
contents:
SAND: 1
2019-01-19 16:52:04 +01:00
# No water allowed
watercoverage: 0
# No ice allowed
icecoverage: 0
plants:
DEAD_BUSH: 10:SAND
CACTUS: 10:SAND
# Conversion list
2019-01-19 16:52:04 +01:00
# Format is:
# Original Block:% chance:New Block:Adjacent Block
2019-01-22 00:44:01 +01:00
# So, for below, dirt has a 30% chance of changing into SAND if it is next to SAND!
# Multiple conversions can be listed
conversion-list:
- DIRT:30:SAND:SAND
2021-01-10 20:57:17 +01:00
- GRASS_BLOCK:30:SAND:SAND
- COARSE_DIRT:30:GRAVEL:SAND
2019-01-19 16:52:04 +01:00
FOREST:
friendlyname: "Flowery forest"
biome: FLOWER_FOREST
icon: RED_TULIP
2019-01-19 16:52:04 +01:00
priority: 4
2019-01-22 00:44:01 +01:00
contents:
OAK_LOG: 3
OAK_LEAVES: 4
GRASS_BLOCK: 4
2019-01-19 16:52:04 +01:00
plants:
PINK_TULIP: 2:GRASS_BLOCK
ORANGE_TULIP: 2:GRASS_BLOCK
SUNFLOWER: 4:GRASS_BLOCK
TALL_GRASS: 20:GRASS_BLOCK
2019-01-22 00:44:01 +01:00
NETHER:
2019-01-19 16:52:04 +01:00
friendlyname: "&cNether"
biome: NETHER_WASTES
2019-01-19 16:52:04 +01:00
icon: LAVA_BUCKET
priority: 5
2019-01-22 00:44:01 +01:00
contents:
NETHERRACK: 1
2019-01-19 16:52:04 +01:00
# Lava required, no ice or water allowed
lavacoverage: 21
icecoverage: 0
watercoverage: 0
mobs:
2020-11-16 00:21:23 +01:00
ZOMBIFIED_PIGLIN: 10:NETHERRACK
PIGLIN: 10:NETHERRACK
STRIDER: 10:LAVA
ENDERMAN: 5:NETHERRACK
moblimit: 9
permission: greenhouses.biome.nether
SOUL_SAND_VALLEY:
friendlyname: "&cSoul Sand Valley"
biome: SOUL_SAND_VALLEY
icon: SOUL_SAND
priority: 8
contents:
SOUL_SAND: 10
# No Lava required, no ice or water allowed
lavacoverage: 0
icecoverage: 0
watercoverage: 0
mobs:
SKELETON: 10:SOUL_SAND
moblimit: 9
permission: greenhouses.biome.nether
# Conversion list - in this case, an adjacent block is required to convert
# Format is:
# Original Block:% chance:New Block:Adjacent Block
# So, for below, dirt has a 50% chance of changing into clay if it is next to water!
conversion-list:
- NETHERRACK:20:SOUL_SAND:SOUL_SAND
CRIMSON_FOREST:
friendlyname: "&cCrimson Forest"
biome: CRIMSON_FOREST
icon: CRIMSON_FUNGUS
priority: 6
contents:
NETHERRACK: 1
CRIMSON_NYLIUM: 1
# Lava required, no ice or water allowed
lavacoverage: 10
icecoverage: 0
watercoverage: 0
mobs:
ZOMBIFIED_PIGLIN: 5:NETHERRACK
PIGLIN: 10:CRIMSON_NYLIUM
HOGLIN: 10:CRIMSON_NYLIUM
moblimit: 9
permission: greenhouses.biome.nether
WARPED_FOREST:
friendlyname: "&cWarped Forest"
biome: WARPED_FOREST
icon: WARPED_FUNGUS
priority: 7
contents:
NETHERRACK: 1
WARPED_NYLIUM: 1
# Lava required, no ice or water allowed
lavacoverage: 10
icecoverage: 0
watercoverage: 0
mobs:
STRIDER: 10:LAVA
ENDERMAN: 20:WARPED_NYLIUM
2019-01-19 16:52:04 +01:00
moblimit: 9
permission: greenhouses.biome.nether
JUNGLE:
biome: JUNGLE
icon: VINE
priority: 6
2019-01-22 00:44:01 +01:00
contents:
GRASS_BLOCK: 4
2019-01-22 00:44:01 +01:00
JUNGLE_LOG: 3
JUNGLE_LEAVES: 4
2019-01-19 16:52:04 +01:00
plants:
DANDELION: 20:GRASS_BLOCK
MELON: 10:GRASS_BLOCK
ROSE_BUSH: 20:GRASS_BLOCK
FERN: 20:GRASS_BLOCK
TALL_GRASS: 20:GRASS_BLOCK
2019-01-22 00:44:01 +01:00
MUSHROOM_FIELDS:
friendlyname: "Mushroom Fields"
biome: MUSHROOM_FIELDS
2019-01-19 16:52:04 +01:00
icon: RED_MUSHROOM
priority: 11
2019-01-22 00:44:01 +01:00
contents:
MYCELIUM: 2
2019-01-19 16:52:04 +01:00
# Water required at 30%
watercoverage: 30
plants:
2019-01-22 00:44:01 +01:00
BROWN_MUSHROOM: 10:MYCELIUM
RED_MUSHROOM: 10:MYCELIUM
2019-01-19 16:52:04 +01:00
mobs:
2019-01-22 00:44:01 +01:00
MUSHROOM_COW: 10:MYCELIUM
2019-01-19 16:52:04 +01:00
moblimit: 9
OCEAN:
biome: OCEAN
icon: WATER_BUCKET
priority: 8
# Lots of water required!
watercoverage: 95
mobs:
2019-01-22 00:44:01 +01:00
SQUID: 10:WATER
2019-01-19 16:52:04 +01:00
moblimit: 9
PLAINS:
friendlyname: "Horse Plains"
biome: PLAINS
icon: GRASS_BLOCK
2019-01-19 16:52:04 +01:00
priority: 1
2019-01-22 00:44:01 +01:00
contents:
GRASS_BLOCK: 3
2019-01-19 16:52:04 +01:00
plants:
TALL_GRASS: 10:GRASS_BLOCK
2019-01-19 16:52:04 +01:00
mobs:
HORSE: 10:GRASS_BLOCK
moblimit: 1
2019-01-19 16:52:04 +01:00
RIVER:
friendlyname: "Clay river"
biome: RIVER
icon: CLAY
priority: 10
2019-01-22 00:44:01 +01:00
contents:
SAND: 1
2019-01-19 16:52:04 +01:00
# 50% water required
watercoverage: 50
# Conversion list - in this case, an adjacent block is required to convert
2019-01-19 16:52:04 +01:00
# Format is:
# Original Block:% chance:New Block:Adjacent Block
2019-01-19 16:52:04 +01:00
# So, for below, dirt has a 50% chance of changing into clay if it is next to water!
conversion-list:
- DIRT:50:CLAY:WATER
2019-01-19 16:52:04 +01:00
SAVANNA:
biome: SAVANNA
2019-01-22 00:44:01 +01:00
icon: ACACIA_LEAVES
2019-01-19 16:52:04 +01:00
priority: 11
2019-01-22 00:44:01 +01:00
contents:
ACACIA_LOG: 3
ACACIA_LEAVES: 4
GRASS_BLOCK: 4
2019-01-19 16:52:04 +01:00
plants:
TALL_GRASS: 10:GRASS_BLOCK
2019-01-22 00:44:01 +01:00
SWAMP:
2019-01-19 16:52:04 +01:00
friendlyname: "&2Slimy Swamp"
2019-01-22 00:44:01 +01:00
biome: SWAMP
icon: LILY_PAD
2019-01-19 16:52:04 +01:00
priority: 13
2019-01-22 00:44:01 +01:00
contents:
GRASS_BLOCK: 4
2019-01-22 00:44:01 +01:00
OAK_LOG: 3
OAK_LEAVES: 4
2019-01-19 16:52:04 +01:00
# 50% water coverage required
watercoverage: 50
plants:
RED_MUSHROOM: 20:GRASS_BLOCK
BROWN_MUSHROOM: 20:GRASS_BLOCK
BLUE_ORCHID: 10:GRASS_BLOCK
2019-01-22 00:44:01 +01:00
LILY_PAD: 5:WATER
2019-01-19 16:52:04 +01:00
mobs:
2019-01-22 00:44:01 +01:00
SLIME: 5:WATER
2019-01-19 16:52:04 +01:00
moblimit: 3
DRIPSTONE_CAVES:
friendlyname: "&6Drippy Drops"
biome: dripstone_caves
icon: DRIPSTONE_BLOCK
priority: 15
contents:
STONE: 8
CLAY: 8
# 50% water cove rage required
watercoverage: 25
conversions:
CLAY: 50:DRIPSTONE_BLOCK:WATER
STONE: 0.005:COPPER_ORE:STONE
plants:
GLOW_LICHEN: 20:STONE
mobs:
skeleton: 5:STONE
glow_squid: 5:WATER
moblimit: 5