diff --git a/src/main/java/biomesoplenty/api/block/BOPBlocks.java b/src/main/java/biomesoplenty/api/block/BOPBlocks.java index 1f03f9f6e..a673fba6e 100644 --- a/src/main/java/biomesoplenty/api/block/BOPBlocks.java +++ b/src/main/java/biomesoplenty/api/block/BOPBlocks.java @@ -20,7 +20,7 @@ public class BOPBlocks public static Block white_sandstone_stairs; public static Block mud; - public static Block mud_brick_block; + public static Block mud_bricks; public static Block mud_brick_slab; public static Block mud_brick_stairs; diff --git a/src/main/java/biomesoplenty/common/biome/overworld/ConiferousForestBiome.java b/src/main/java/biomesoplenty/common/biome/overworld/ConiferousForestBiome.java index 9ba60bee0..0c5e4c934 100644 --- a/src/main/java/biomesoplenty/common/biome/overworld/ConiferousForestBiome.java +++ b/src/main/java/biomesoplenty/common/biome/overworld/ConiferousForestBiome.java @@ -69,7 +69,7 @@ public class ConiferousForestBiome extends BiomeBOP // Vegetation this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.RANDOM_SELECTOR, new MultipleRandomFeatureConfig(new Feature[]{BOPBiomeFeatures.FIR_TREE}, new IFeatureConfig[]{IFeatureConfig.NO_FEATURE_CONFIG}, new float[]{0.33333334F}, BOPBiomeFeatures.FIR_TREE_LARGE, IFeatureConfig.NO_FEATURE_CONFIG), Placement.COUNT_EXTRA_HEIGHTMAP, new AtSurfaceWithExtraConfig(10, 0.1F, 1))); - this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.DEFAULT_FLOWER, IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_32, new FrequencyConfig(2))); + this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(BOPBiomeFeatures.CONIFEROUS_FOREST_FLOWERS, IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_32, new FrequencyConfig(3))); this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(new FernGrassFeature(NoFeatureConfig::deserialize), IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(4))); this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.BUSH, new BushConfig(BOPBlocks.reed.getDefaultState()), Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(5))); this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.BUSH, new BushConfig(Blocks.BROWN_MUSHROOM.getDefaultState()), Placement.CHANCE_HEIGHTMAP_DOUBLE, new ChanceConfig(4))); diff --git a/src/main/java/biomesoplenty/common/biome/overworld/OminousWoodsBiome.java b/src/main/java/biomesoplenty/common/biome/overworld/OminousWoodsBiome.java index f4346df7c..6beaf78fe 100644 --- a/src/main/java/biomesoplenty/common/biome/overworld/OminousWoodsBiome.java +++ b/src/main/java/biomesoplenty/common/biome/overworld/OminousWoodsBiome.java @@ -66,7 +66,7 @@ public class OminousWoodsBiome extends BiomeBOP // Vegetation this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.RANDOM_SELECTOR, new MultipleRandomFeatureConfig(new Feature[]{BOPBiomeFeatures.DEAD_TREE, BOPBiomeFeatures.DYING_TREE, BOPBiomeFeatures.WILLOW_TREE, BOPBiomeFeatures.TALL_UMBRAN_TREE}, new IFeatureConfig[]{IFeatureConfig.NO_FEATURE_CONFIG, IFeatureConfig.NO_FEATURE_CONFIG, IFeatureConfig.NO_FEATURE_CONFIG, IFeatureConfig.NO_FEATURE_CONFIG}, new float[]{0.05F, 0.15F, 0.15F, 0.7F}, BOPBiomeFeatures.UMBRAN_TREE, IFeatureConfig.NO_FEATURE_CONFIG), Placement.COUNT_EXTRA_HEIGHTMAP, new AtSurfaceWithExtraConfig(7, 0.5F, 1))); - //this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(BOPBiomeFeatures.MYSTIC_GROVE_FLOWERS, Placement.COUNT_HEIGHTMAP_32, new FrequencyConfig(10))); + this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(BOPBiomeFeatures.OMINOUS_WOODS_FLOWERS, IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_32, new FrequencyConfig(3))); this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(new StandardGrassFeature(NoFeatureConfig::deserialize), IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(8))); this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.BUSH, new BushConfig(Blocks.BROWN_MUSHROOM.getDefaultState()), Placement.CHANCE_HEIGHTMAP_DOUBLE, new ChanceConfig(4))); this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.BUSH, new BushConfig(Blocks.RED_MUSHROOM.getDefaultState()), Placement.CHANCE_HEIGHTMAP_DOUBLE, new ChanceConfig(8))); diff --git a/src/main/java/biomesoplenty/common/world/gen/feature/BOPBiomeFeatures.java b/src/main/java/biomesoplenty/common/world/gen/feature/BOPBiomeFeatures.java index 89c6757ef..4f87aeee9 100644 --- a/src/main/java/biomesoplenty/common/world/gen/feature/BOPBiomeFeatures.java +++ b/src/main/java/biomesoplenty/common/world/gen/feature/BOPBiomeFeatures.java @@ -118,6 +118,7 @@ public class BOPBiomeFeatures //Flowers public static final FlowersFeature CHAPARRAL_FLOWERS = new ChaparralFlowersFeature(NoFeatureConfig::deserialize); public static final FlowersFeature CHERRY_BLOSSOM_GROVE_FLOWERS = new CherryBlossomGroveFlowersFeature(NoFeatureConfig::deserialize); + public static final FlowersFeature CONIFEROUS_FOREST_FLOWERS = new ConiferousForestFlowersFeature(NoFeatureConfig::deserialize); public static final FlowersFeature EXTENDED_FLOWERS = new ExtendedFlowersFeature(NoFeatureConfig::deserialize); public static final FlowersFeature FLOWER_MEADOW_FLOWERS = new FlowerMeadowFlowersFeature(NoFeatureConfig::deserialize); public static final FlowersFeature JUNGLE_FLOWERS = new JungleFlowersFeature(NoFeatureConfig::deserialize); @@ -127,6 +128,7 @@ public class BOPBiomeFeatures public static final FlowersFeature MEADOW_FLOWERS = new MeadowFlowersFeature(NoFeatureConfig::deserialize); public static final FlowersFeature MOOR_FLOWERS = new MoorFlowersFeature(NoFeatureConfig::deserialize); public static final FlowersFeature MYSTIC_GROVE_FLOWERS = new MysticGroveFlowersFeature(NoFeatureConfig::deserialize); + public static final FlowersFeature OMINOUS_WOODS_FLOWERS = new OminousWoodsFlowersFeature(NoFeatureConfig::deserialize); public static final FlowersFeature ORIGIN_FLOWERS = new OriginFlowersFeature(NoFeatureConfig::deserialize); public static final FlowersFeature PRAIRIE_FLOWERS = new PrairieFlowersFeature(NoFeatureConfig::deserialize); public static final FlowersFeature RAINFOREST_FLOWERS = new RainforestFlowersFeature(NoFeatureConfig::deserialize); diff --git a/src/main/java/biomesoplenty/common/world/gen/feature/CherryBlossomGroveFlowersFeature.java b/src/main/java/biomesoplenty/common/world/gen/feature/CherryBlossomGroveFlowersFeature.java index 7cdadb7eb..afc567b98 100644 --- a/src/main/java/biomesoplenty/common/world/gen/feature/CherryBlossomGroveFlowersFeature.java +++ b/src/main/java/biomesoplenty/common/world/gen/feature/CherryBlossomGroveFlowersFeature.java @@ -35,7 +35,7 @@ public class CherryBlossomGroveFlowersFeature extends FlowersFeature return BOPBlocks.pink_daffodil.getDefaultState(); case 1: default: - return Blocks.OXEYE_DAISY.getDefaultState(); + return Blocks.LILY_OF_THE_VALLEY.getDefaultState(); } } } \ No newline at end of file diff --git a/src/main/java/biomesoplenty/common/world/gen/feature/ConiferousForestFlowersFeature.java b/src/main/java/biomesoplenty/common/world/gen/feature/ConiferousForestFlowersFeature.java new file mode 100644 index 000000000..ed92ef687 --- /dev/null +++ b/src/main/java/biomesoplenty/common/world/gen/feature/ConiferousForestFlowersFeature.java @@ -0,0 +1,44 @@ +/******************************************************************************* + * Copyright 2014-2019, the Biomes O' Plenty Team + * + * This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License. + * + * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. + ******************************************************************************/ +package biomesoplenty.common.world.gen.feature; + +import com.mojang.datafixers.Dynamic; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.gen.feature.FlowersFeature; +import net.minecraft.world.gen.feature.NoFeatureConfig; + +import java.util.Random; +import java.util.function.Function; + +public class ConiferousForestFlowersFeature extends FlowersFeature +{ + public ConiferousForestFlowersFeature(Function, ? extends NoFeatureConfig> deserializer) + { + super(deserializer); + } + + @Override + public BlockState getRandomFlower(Random p_202355_1_, BlockPos p_202355_2_) + { + int j = p_202355_1_.nextInt(4); + switch(j) + { + case 0: + return Blocks.CORNFLOWER.getDefaultState(); + case 1: + return Blocks.OXEYE_DAISY.getDefaultState(); + case 2: + return Blocks.POPPY.getDefaultState(); + case 3: + default: + return Blocks.DANDELION.getDefaultState(); + } + } +} \ No newline at end of file diff --git a/src/main/java/biomesoplenty/common/world/gen/feature/MeadowFlowersFeature.java b/src/main/java/biomesoplenty/common/world/gen/feature/MeadowFlowersFeature.java index 964fc6821..8d8f26c95 100644 --- a/src/main/java/biomesoplenty/common/world/gen/feature/MeadowFlowersFeature.java +++ b/src/main/java/biomesoplenty/common/world/gen/feature/MeadowFlowersFeature.java @@ -22,7 +22,7 @@ import java.util.function.Function; public class MeadowFlowersFeature extends FlowersFeature { - private static final Block[] FLOWERS = new Block[]{Blocks.OXEYE_DAISY, Blocks.AZURE_BLUET, Blocks.DANDELION, Blocks.POPPY}; + private static final Block[] FLOWERS = new Block[]{Blocks.LILY_OF_THE_VALLEY, Blocks.AZURE_BLUET, Blocks.DANDELION, Blocks.POPPY}; public MeadowFlowersFeature(Function, ? extends NoFeatureConfig> deserializer) { diff --git a/src/main/java/biomesoplenty/common/world/gen/feature/MysticGroveFlowersFeature.java b/src/main/java/biomesoplenty/common/world/gen/feature/MysticGroveFlowersFeature.java index 067ef5d9b..747ac3c00 100644 --- a/src/main/java/biomesoplenty/common/world/gen/feature/MysticGroveFlowersFeature.java +++ b/src/main/java/biomesoplenty/common/world/gen/feature/MysticGroveFlowersFeature.java @@ -23,7 +23,7 @@ import java.util.function.Function; public class MysticGroveFlowersFeature extends FlowersFeature { - private static final Block[] FLOWERS = new Block[]{BOPBlocks.blue_hydrangea, BOPBlocks.glowflower, BOPBlocks.pink_daffodil, Blocks.OXEYE_DAISY, Blocks.ALLIUM}; + private static final Block[] FLOWERS = new Block[]{BOPBlocks.blue_hydrangea, BOPBlocks.glowflower, BOPBlocks.pink_daffodil, Blocks.OXEYE_DAISY, Blocks.LILY_OF_THE_VALLEY, Blocks.ALLIUM}; public MysticGroveFlowersFeature(Function, ? extends NoFeatureConfig> deserializer) { diff --git a/src/main/java/biomesoplenty/common/world/gen/feature/OminousWoodsFlowersFeature.java b/src/main/java/biomesoplenty/common/world/gen/feature/OminousWoodsFlowersFeature.java new file mode 100644 index 000000000..b92bfbdfc --- /dev/null +++ b/src/main/java/biomesoplenty/common/world/gen/feature/OminousWoodsFlowersFeature.java @@ -0,0 +1,39 @@ +/******************************************************************************* + * Copyright 2014-2019, the Biomes O' Plenty Team + * + * This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License. + * + * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. + ******************************************************************************/ +package biomesoplenty.common.world.gen.feature; + +import com.mojang.datafixers.Dynamic; +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.MathHelper; +import net.minecraft.world.biome.Biome; +import net.minecraft.world.gen.feature.FlowersFeature; +import net.minecraft.world.gen.feature.NoFeatureConfig; + +import java.util.Random; +import java.util.function.Function; + +public class OminousWoodsFlowersFeature extends FlowersFeature +{ + private static final Block[] FLOWERS = new Block[]{Blocks.WITHER_ROSE}; + + public OminousWoodsFlowersFeature(Function, ? extends NoFeatureConfig> deserializer) + { + super(deserializer); + } + + @Override + public BlockState getRandomFlower(Random p_202355_1_, BlockPos p_202355_2_) + { + double d0 = MathHelper.clamp((1.0D + Biome.INFO_NOISE.getValue((double)p_202355_2_.getX() / 48.0D, (double)p_202355_2_.getZ() / 48.0D)) / 2.0D, 0.0D, 0.9999D); + Block block = FLOWERS[(int)(d0 * (double)FLOWERS.length)]; + return block.getDefaultState(); + } +} \ No newline at end of file diff --git a/src/main/java/biomesoplenty/common/world/gen/feature/PrairieFlowersFeature.java b/src/main/java/biomesoplenty/common/world/gen/feature/PrairieFlowersFeature.java index 3067044e8..692cde86c 100644 --- a/src/main/java/biomesoplenty/common/world/gen/feature/PrairieFlowersFeature.java +++ b/src/main/java/biomesoplenty/common/world/gen/feature/PrairieFlowersFeature.java @@ -11,6 +11,7 @@ import biomesoplenty.api.block.BOPBlocks; import com.mojang.datafixers.Dynamic; import net.minecraft.block.Block; import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; import net.minecraft.world.biome.Biome; @@ -22,7 +23,7 @@ import java.util.function.Function; public class PrairieFlowersFeature extends FlowersFeature { - private static final Block[] FLOWERS = new Block[]{BOPBlocks.goldenrod}; + private static final Block[] FLOWERS = new Block[]{Blocks.CORNFLOWER, BOPBlocks.goldenrod}; public PrairieFlowersFeature(Function, ? extends NoFeatureConfig> deserializer) { diff --git a/src/main/java/biomesoplenty/init/ModBlocks.java b/src/main/java/biomesoplenty/init/ModBlocks.java index 0f835312c..88137d801 100644 --- a/src/main/java/biomesoplenty/init/ModBlocks.java +++ b/src/main/java/biomesoplenty/init/ModBlocks.java @@ -34,9 +34,9 @@ public class ModBlocks white_sandstone_stairs = registerBlock(new BlockStairsBOP(white_sandstone.getDefaultState(), Block.Properties.from(white_sandstone)), "white_sandstone_stairs"); mud = registerBlock(new BlockMud(Block.Properties.create(Material.EARTH, MaterialColor.BROWN_TERRACOTTA).hardnessAndResistance(0.6F)), "mud"); - mud_brick_block = registerBlock(new Block(Block.Properties.create(Material.ROCK, MaterialColor.BROWN_TERRACOTTA).hardnessAndResistance(1.0F)), "mud_brick_block"); + mud_bricks = registerBlock(new Block(Block.Properties.create(Material.ROCK, MaterialColor.BROWN_TERRACOTTA).hardnessAndResistance(1.0F)), "mud_bricks"); mud_brick_slab = registerBlock(new BlockSlabBOP(Block.Properties.create(Material.ROCK, MaterialColor.BROWN_TERRACOTTA).hardnessAndResistance(2.0F, 6.0F)), "mud_brick_slab"); - mud_brick_stairs = registerBlock(new BlockStairsBOP(mud_brick_block.getDefaultState(), Block.Properties.from(mud_brick_block)), "mud_brick_stairs"); + mud_brick_stairs = registerBlock(new BlockStairsBOP(mud_bricks.getDefaultState(), Block.Properties.from(mud_bricks)), "mud_brick_stairs"); dried_sand = registerBlock(new BlockDriedSand(Block.Properties.create(Material.EARTH, MaterialColor.WOOD).hardnessAndResistance(1.0F)), "dried_sand"); ash_block = registerBlock(new BlockAsh(Block.Properties.create(Material.SAND, MaterialColor.BLACK_TERRACOTTA).hardnessAndResistance(0.4F).sound(SoundType.SAND)), "ash_block"); diff --git a/src/main/resources/assets/biomesoplenty/blockstates/cherry_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/cherry_sign.json new file mode 100644 index 000000000..157a397c5 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/cherry_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/cherry_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/cherry_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/cherry_wall_sign.json new file mode 100644 index 000000000..157a397c5 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/cherry_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/cherry_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/cut_white_sandstone_slab.json b/src/main/resources/assets/biomesoplenty/blockstates/cut_white_sandstone_slab.json new file mode 100644 index 000000000..d34b0e76c --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/cut_white_sandstone_slab.json @@ -0,0 +1,7 @@ +{ + "variants": { + "type=bottom": { "model": "biomesoplenty:block/cut_white_sandstone_slab" }, + "type=top": { "model": "biomesoplenty:block/cut_white_sandstone_slab_top" }, + "type=double": { "model": "biomesoplenty:block/cut_white_sandstone" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/dead_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/dead_sign.json new file mode 100644 index 000000000..062099e55 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/dead_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/dead_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/dead_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/dead_wall_sign.json new file mode 100644 index 000000000..062099e55 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/dead_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/dead_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/ethereal_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/ethereal_sign.json new file mode 100644 index 000000000..5194067b0 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/ethereal_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/ethereal_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/ethereal_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/ethereal_wall_sign.json new file mode 100644 index 000000000..5194067b0 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/ethereal_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/ethereal_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/fir_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/fir_sign.json new file mode 100644 index 000000000..dec8f86db --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/fir_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/fir_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/fir_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/fir_wall_sign.json new file mode 100644 index 000000000..dec8f86db --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/fir_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/fir_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/hellbark_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/hellbark_sign.json new file mode 100644 index 000000000..42440b21e --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/hellbark_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/hellbark_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/hellbark_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/hellbark_wall_sign.json new file mode 100644 index 000000000..42440b21e --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/hellbark_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/hellbark_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/jacaranda_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/jacaranda_sign.json new file mode 100644 index 000000000..50db79a84 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/jacaranda_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/jacaranda_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/jacaranda_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/jacaranda_wall_sign.json new file mode 100644 index 000000000..50db79a84 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/jacaranda_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/jacaranda_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/magic_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/magic_sign.json new file mode 100644 index 000000000..0831d520f --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/magic_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/magic_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/magic_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/magic_wall_sign.json new file mode 100644 index 000000000..0831d520f --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/magic_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/magic_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/mahogany_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/mahogany_sign.json new file mode 100644 index 000000000..b2193dab7 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/mahogany_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/mahogany_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/mahogany_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/mahogany_wall_sign.json new file mode 100644 index 000000000..b2193dab7 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/mahogany_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/mahogany_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_block.json b/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_block.json deleted file mode 100644 index b5730832d..000000000 --- a/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_block.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "biomesoplenty:block/mud_brick_block" } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_slab.json b/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_slab.json index 67f64367f..d9d514ad3 100644 --- a/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_slab.json +++ b/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_slab.json @@ -2,6 +2,6 @@ "variants": { "type=bottom": { "model": "biomesoplenty:block/mud_brick_slab" }, "type=top": { "model": "biomesoplenty:block/mud_brick_slab_top" }, - "type=double": { "model": "biomesoplenty:block/mud_brick_block" } + "type=double": { "model": "biomesoplenty:block/mud_bricks" } } } diff --git a/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_wall.json b/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_wall.json new file mode 100644 index 000000000..63b74a414 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/mud_brick_wall.json @@ -0,0 +1,19 @@ +{ + "multipart": [ + { "when": { "up": "true" }, + "apply": { "model": "biomesoplenty:block/mud_brick_wall_post" } + }, + { "when": { "north": "true" }, + "apply": { "model": "biomesoplenty:block/mud_brick_wall_side", "uvlock": true } + }, + { "when": { "east": "true" }, + "apply": { "model": "biomesoplenty:block/mud_brick_wall_side", "y": 90, "uvlock": true } + }, + { "when": { "south": "true" }, + "apply": { "model": "biomesoplenty:block/mud_brick_wall_side", "y": 180, "uvlock": true } + }, + { "when": { "west": "true" }, + "apply": { "model": "biomesoplenty:block/mud_brick_wall_side", "y": 270, "uvlock": true } + } + ] +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/mud_bricks.json b/src/main/resources/assets/biomesoplenty/blockstates/mud_bricks.json new file mode 100644 index 000000000..186ca5e23 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/mud_bricks.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/mud_bricks" } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/blockstates/palm_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/palm_sign.json new file mode 100644 index 000000000..baa75ed70 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/palm_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/palm_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/palm_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/palm_wall_sign.json new file mode 100644 index 000000000..baa75ed70 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/palm_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/palm_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/redwood_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/redwood_sign.json new file mode 100644 index 000000000..bbda929f2 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/redwood_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/redwood_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/redwood_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/redwood_wall_sign.json new file mode 100644 index 000000000..bbda929f2 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/redwood_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/redwood_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/smooth_white_sandstone_slab.json b/src/main/resources/assets/biomesoplenty/blockstates/smooth_white_sandstone_slab.json new file mode 100644 index 000000000..9fd8dc5cb --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/smooth_white_sandstone_slab.json @@ -0,0 +1,7 @@ +{ + "variants": { + "type=bottom": { "model": "biomesoplenty:block/smooth_white_sandstone_slab" }, + "type=top": { "model": "biomesoplenty:block/smooth_white_sandstone_slab_top" }, + "type=double": { "model": "biomesoplenty:block/smooth_white_sandstone" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/smooth_white_sandstone_stairs.json b/src/main/resources/assets/biomesoplenty/blockstates/smooth_white_sandstone_stairs.json new file mode 100644 index 000000000..ad6b020e0 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/smooth_white_sandstone_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer" }, + "facing=west,half=bottom,shape=outer_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer" }, + "facing=north,half=bottom,shape=outer_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner" }, + "facing=west,half=bottom,shape=inner_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner" }, + "facing=north,half=bottom,shape=inner_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_outer", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "biomesoplenty:block/smooth_white_sandstone_stairs_inner", "x": 180, "y": 270, "uvlock": true } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/umbran_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/umbran_sign.json new file mode 100644 index 000000000..b4c0ff2b3 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/umbran_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/umbran_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/umbran_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/umbran_wall_sign.json new file mode 100644 index 000000000..b4c0ff2b3 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/umbran_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/umbran_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/white_sandstone_wall.json b/src/main/resources/assets/biomesoplenty/blockstates/white_sandstone_wall.json new file mode 100644 index 000000000..0c3782c49 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/white_sandstone_wall.json @@ -0,0 +1,19 @@ +{ + "multipart": [ + { "when": { "up": "true" }, + "apply": { "model": "biomesoplenty:block/white_sandstone_wall_post" } + }, + { "when": { "north": "true" }, + "apply": { "model": "biomesoplenty:block/white_sandstone_wall_side", "uvlock": true } + }, + { "when": { "east": "true" }, + "apply": { "model": "biomesoplenty:block/white_sandstone_wall_side", "y": 90, "uvlock": true } + }, + { "when": { "south": "true" }, + "apply": { "model": "biomesoplenty:block/white_sandstone_wall_side", "y": 180, "uvlock": true } + }, + { "when": { "west": "true" }, + "apply": { "model": "biomesoplenty:block/white_sandstone_wall_side", "y": 270, "uvlock": true } + } + ] +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/willow_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/willow_sign.json new file mode 100644 index 000000000..00d90a30a --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/willow_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/willow_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/blockstates/willow_wall_sign.json b/src/main/resources/assets/biomesoplenty/blockstates/willow_wall_sign.json new file mode 100644 index 000000000..00d90a30a --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/blockstates/willow_wall_sign.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "biomesoplenty:block/willow_sign" } + } +} diff --git a/src/main/resources/assets/biomesoplenty/lang/en_us.json b/src/main/resources/assets/biomesoplenty/lang/en_us.json index ec45f7cfe..72c0db074 100644 --- a/src/main/resources/assets/biomesoplenty/lang/en_us.json +++ b/src/main/resources/assets/biomesoplenty/lang/en_us.json @@ -121,6 +121,8 @@ "block.biomesoplenty.cherry_log": "Cherry Log", "block.biomesoplenty.cherry_planks": "Cherry Planks", "block.biomesoplenty.cherry_pressure_plate": "Cherry Pressure Plate", + "block.biomesoplenty.cherry_sign": "Cherry Sign", + "block.biomesoplenty.cherry_wall_sign": "Cherry Wall Sign", "block.biomesoplenty.cherry_slab": "Cherry Slab", "block.biomesoplenty.cherry_stairs": "Cherry Stairs", "block.biomesoplenty.cherry_trapdoor": "Cherry Trapdoor", @@ -128,6 +130,7 @@ "block.biomesoplenty.cherry_wood_slab": "Cherry Slab", "block.biomesoplenty.chiseled_white_sandstone": "Chiseled White Sandstone", "block.biomesoplenty.cut_white_sandstone": "Cut White Sandstone", + "block.biomesoplenty.cut_white_sandstone_slab": "Cut White Sandstone Slab", "block.biomesoplenty.dead_button": "Dead Button", "block.biomesoplenty.dead_door": "Dead Door", "block.biomesoplenty.dead_fence": "Dead Fence", @@ -138,6 +141,8 @@ "block.biomesoplenty.dead_planks": "Dead Planks", "block.biomesoplenty.dead_pressure_plate": "Dead Pressure Plate", "block.biomesoplenty.dead_sapling": "Dead Sapling", + "block.biomesoplenty.dead_sign": "Dead Sign", + "block.biomesoplenty.dead_wall_sign": "Dead Wall Sign", "block.biomesoplenty.dead_slab": "Dead Slab", "block.biomesoplenty.dead_stairs": "Dead Stairs", "block.biomesoplenty.dead_trapdoor": "Dead Trapdoor", @@ -155,6 +160,8 @@ "block.biomesoplenty.ethereal_planks": "Ethereal Planks", "block.biomesoplenty.ethereal_pressure_plate": "Ethereal Pressure Plate", "block.biomesoplenty.ethereal_sapling": "Ethereal Sapling", + "block.biomesoplenty.ethereal_sign": "Ethereal Sign", + "block.biomesoplenty.ethereal_wall_sign": "Ethereal Wall Sign", "block.biomesoplenty.ethereal_slab": "Ethereal Slab", "block.biomesoplenty.ethereal_stairs": "Ethereal Stairs", "block.biomesoplenty.ethereal_trapdoor": "Ethereal Trapdoor", @@ -169,6 +176,8 @@ "block.biomesoplenty.fir_planks": "Fir Planks", "block.biomesoplenty.fir_pressure_plate": "Fir Pressure Plate", "block.biomesoplenty.fir_sapling": "Fir Sapling", + "block.biomesoplenty.fir_sign": "Fir Sign", + "block.biomesoplenty.fir_wall_sign": "Fir Wall Sign", "block.biomesoplenty.fir_slab": "Fir Slab", "block.biomesoplenty.fir_stairs": "Fir Stairs", "block.biomesoplenty.fir_trapdoor": "Fir Trapdoor", @@ -189,6 +198,8 @@ "block.biomesoplenty.hellbark_planks": "Hellbark Planks", "block.biomesoplenty.hellbark_pressure_plate": "Hellbark Pressure Plate", "block.biomesoplenty.hellbark_sapling": "Hellbark Sapling", + "block.biomesoplenty.hellbark_sign": "Hellbark Sign", + "block.biomesoplenty.hellbark_wall_sign": "Hellbark Wall Sign", "block.biomesoplenty.hellbark_slab": "Hellbark Slab", "block.biomesoplenty.hellbark_stairs": "Hellbark Stairs", "block.biomesoplenty.hellbark_trapdoor": "Hellbark Trapdoor", @@ -203,6 +214,8 @@ "block.biomesoplenty.jacaranda_planks": "Jacaranda Planks", "block.biomesoplenty.jacaranda_pressure_plate": "Jacaranda Pressure Plate", "block.biomesoplenty.jacaranda_sapling": "Jacaranda Sapling", + "block.biomesoplenty.jacaranda_sign": "Jacaranda Sign", + "block.biomesoplenty.jacaranda_wall_sign": "Jacaranda Wall Sign", "block.biomesoplenty.jacaranda_slab": "Jacaranda Slab", "block.biomesoplenty.jacaranda_stairs": "Jacaranda Stairs", "block.biomesoplenty.jacaranda_trapdoor": "Jacaranda Trapdoor", @@ -218,6 +231,8 @@ "block.biomesoplenty.magic_planks": "Magic Planks", "block.biomesoplenty.magic_pressure_plate": "Magic Pressure Plate", "block.biomesoplenty.magic_sapling": "Magic Sapling", + "block.biomesoplenty.magic_sign": "Magic Sign", + "block.biomesoplenty.magic_wall_sign": "Magic Wall Sign", "block.biomesoplenty.magic_slab": "Magic Slab", "block.biomesoplenty.magic_stairs": "Magic Stairs", "block.biomesoplenty.magic_trapdoor": "Magic Trapdoor", @@ -232,6 +247,8 @@ "block.biomesoplenty.mahogany_planks": "Mahogany Planks", "block.biomesoplenty.mahogany_pressure_plate": "Mahogany Pressure Plate", "block.biomesoplenty.mahogany_sapling": "Mahogany Sapling", + "block.biomesoplenty.mahogany_sign": "Mahogany Sign", + "block.biomesoplenty.mahogany_wall_sign": "Mahogany Wall Sign", "block.biomesoplenty.mahogany_slab": "Mahogany Slab", "block.biomesoplenty.mahogany_stairs": "Mahogany Stairs", "block.biomesoplenty.mahogany_trapdoor": "Mahogany Trapdoor", @@ -241,9 +258,10 @@ "block.biomesoplenty.maple_leaves": "Maple Leaves", "block.biomesoplenty.maple_sapling": "Maple Sapling", "block.biomesoplenty.mud": "Mud", - "block.biomesoplenty.mud_brick_block": "Mud Bricks", + "block.biomesoplenty.mud_bricks": "Mud Bricks", "block.biomesoplenty.mud_brick_slab": "Mud Brick Slab", "block.biomesoplenty.mud_brick_stairs": "Mud Brick Stairs", + "block.biomesoplenty.mud_brick_wall": "Mud Brick Wall", "block.biomesoplenty.orange_autumn_leaves": "Orange Autumn Leaves", "block.biomesoplenty.orange_autumn_sapling": "Orange Autumn Sapling", "block.biomesoplenty.orange_cosmos": "Orange Cosmos", @@ -258,6 +276,8 @@ "block.biomesoplenty.palm_planks": "Palm Planks", "block.biomesoplenty.palm_pressure_plate": "Palm Pressure Plate", "block.biomesoplenty.palm_sapling": "Palm Sapling", + "block.biomesoplenty.palm_sign": "Palm Sign", + "block.biomesoplenty.palm_wall_sign": "Palm Wall Sign", "block.biomesoplenty.palm_slab": "Palm Slab", "block.biomesoplenty.palm_stairs": "Palm Stairs", "block.biomesoplenty.palm_trapdoor": "Palm Trapdoor", @@ -276,6 +296,8 @@ "block.biomesoplenty.redwood_planks": "Redwood Planks", "block.biomesoplenty.redwood_pressure_plate": "Redwood Pressure Plate", "block.biomesoplenty.redwood_sapling": "Redwood Sapling", + "block.biomesoplenty.redwood_sign": "Redwood Sign", + "block.biomesoplenty.redwood_wall_sign": "Redwood Wall Sign", "block.biomesoplenty.redwood_slab": "Redwood Slab", "block.biomesoplenty.redwood_stairs": "Redwood Stairs", "block.biomesoplenty.redwood_trapdoor": "Redwood Trapdoor", @@ -284,6 +306,8 @@ "block.biomesoplenty.reed": "Reed", "block.biomesoplenty.rose": "Rose", "block.biomesoplenty.smooth_white_sandstone": "Smooth White Sandstone", + "block.biomesoplenty.smooth_white_sandstone_slab": "Smooth White Sandstone Slab", + "block.biomesoplenty.smooth_white_sandstone_stairs": "Smooth White Sandstone Stairs", "block.biomesoplenty.spectral_fern": "Spectral Fern", "block.biomesoplenty.stripped_cherry_log": "Stripped Cherry Log", "block.biomesoplenty.stripped_cherry_wood": "Stripped Cherry Wood", @@ -321,6 +345,8 @@ "block.biomesoplenty.umbran_planks": "Umbran Planks", "block.biomesoplenty.umbran_pressure_plate": "Umbran Pressure Plate", "block.biomesoplenty.umbran_sapling": "Umbran Sapling", + "block.biomesoplenty.umbran_sign": "Umbran Sign", + "block.biomesoplenty.umbran_wall_sign": "Umbran Wall Sign", "block.biomesoplenty.umbran_slab": "Umbran Slab", "block.biomesoplenty.umbran_stairs": "Umbran Stairs", "block.biomesoplenty.umbran_trapdoor": "Umbran Trapdoor", @@ -334,6 +360,7 @@ "block.biomesoplenty.white_sandstone": "White Sandstone", "block.biomesoplenty.white_sandstone_slab": "White Sandstone Slab", "block.biomesoplenty.white_sandstone_stairs": "White Sandstone Stairs", + "block.biomesoplenty.white_sandstone_wall": "White Sandstone Wall", "block.biomesoplenty.wildflower": "Wildflower", "block.biomesoplenty.willow_button": "Willow Button", "block.biomesoplenty.willow_door": "Willow Door", @@ -345,6 +372,8 @@ "block.biomesoplenty.willow_pressure_plate": "Willow Pressure Plate", "block.biomesoplenty.willow_sapling": "Willow Sapling", "block.biomesoplenty.willow_slab": "Willow Slab", + "block.biomesoplenty.willow_sign": "Willow Sign", + "block.biomesoplenty.willow_wall_sign": "Willow Wall Sign", "block.biomesoplenty.willow_stairs": "Willow Stairs", "block.biomesoplenty.willow_trapdoor": "Willow Trapdoor", "block.biomesoplenty.willow_vine": "Willow Vine", diff --git a/src/main/resources/assets/biomesoplenty/models/block/cherry_sign.json b/src/main/resources/assets/biomesoplenty/models/block/cherry_sign.json new file mode 100644 index 000000000..22e37061d --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/cherry_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/cherry_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/cut_white_sandstone_slab.json b/src/main/resources/assets/biomesoplenty/models/block/cut_white_sandstone_slab.json new file mode 100644 index 000000000..62d345667 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/cut_white_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "block/slab", + "textures": { + "bottom": "biomesoplenty:block/white_sandstone_top", + "top": "biomesoplenty:block/white_sandstone_top", + "side": "biomesoplenty:block/cut_white_sandstone" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/cut_white_sandstone_slab_top.json b/src/main/resources/assets/biomesoplenty/models/block/cut_white_sandstone_slab_top.json new file mode 100644 index 000000000..04b11639a --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/cut_white_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "block/slab_top", + "textures": { + "bottom": "biomesoplenty:block/white_sandstone_top", + "top": "biomesoplenty:block/white_sandstone_top", + "side": "biomesoplenty:block/cut_white_sandstone" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/dead_sign.json b/src/main/resources/assets/biomesoplenty/models/block/dead_sign.json new file mode 100644 index 000000000..1e7a037b0 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/dead_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/dead_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/ethereal_sign.json b/src/main/resources/assets/biomesoplenty/models/block/ethereal_sign.json new file mode 100644 index 000000000..d2d939c87 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/ethereal_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/ethereal_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/fir_sign.json b/src/main/resources/assets/biomesoplenty/models/block/fir_sign.json new file mode 100644 index 000000000..25b0bbe13 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/fir_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/fir_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/hellbark_sign.json b/src/main/resources/assets/biomesoplenty/models/block/hellbark_sign.json new file mode 100644 index 000000000..2506ff980 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/hellbark_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/hellbark_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/jacaranda_sign.json b/src/main/resources/assets/biomesoplenty/models/block/jacaranda_sign.json new file mode 100644 index 000000000..a02fbc967 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/jacaranda_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/jacaranda_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/magic_sign.json b/src/main/resources/assets/biomesoplenty/models/block/magic_sign.json new file mode 100644 index 000000000..14ae102ac --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/magic_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/magic_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/mahogany_sign.json b/src/main/resources/assets/biomesoplenty/models/block/mahogany_sign.json new file mode 100644 index 000000000..b0fbcc435 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/mahogany_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/mahogany_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_slab.json b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_slab.json index 55ab3912e..dee9408d1 100644 --- a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_slab.json +++ b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_slab.json @@ -1,8 +1,8 @@ { "parent": "block/slab", "textures": { - "bottom": "biomesoplenty:blocks/mud_brick_block", - "top": "biomesoplenty:blocks/mud_brick_block", - "side": "biomesoplenty:blocks/mud_brick_block" + "bottom": "biomesoplenty:blocks/mud_bricks", + "top": "biomesoplenty:blocks/mud_bricks", + "side": "biomesoplenty:blocks/mud_bricks" } } diff --git a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_slab_top.json b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_slab_top.json index 50fb163a5..5ddf0a401 100644 --- a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_slab_top.json +++ b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_slab_top.json @@ -1,8 +1,8 @@ { "parent": "block/slab_top", "textures": { - "bottom": "biomesoplenty:blocks/mud_brick_block", - "top": "biomesoplenty:blocks/mud_brick_block", - "side": "biomesoplenty:blocks/mud_brick_block" + "bottom": "biomesoplenty:blocks/mud_bricks", + "top": "biomesoplenty:blocks/mud_bricks", + "side": "biomesoplenty:blocks/mud_bricks" } } diff --git a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs.json b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs.json index 166655284..937b0371d 100644 --- a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs.json +++ b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs.json @@ -1,8 +1,8 @@ { "parent": "block/stairs", "textures": { - "bottom": "biomesoplenty:blocks/mud_brick_block", - "top": "biomesoplenty:blocks/mud_brick_block", - "side": "biomesoplenty:blocks/mud_brick_block" + "bottom": "biomesoplenty:blocks/mud_bricks", + "top": "biomesoplenty:blocks/mud_bricks", + "side": "biomesoplenty:blocks/mud_bricks" } } diff --git a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs_inner.json b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs_inner.json index 4345873ca..23582320c 100644 --- a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs_inner.json +++ b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs_inner.json @@ -1,8 +1,8 @@ { "parent": "block/inner_stairs", "textures": { - "bottom": "biomesoplenty:blocks/mud_brick_block", - "top": "biomesoplenty:blocks/mud_brick_block", - "side": "biomesoplenty:blocks/mud_brick_block" + "bottom": "biomesoplenty:blocks/mud_bricks", + "top": "biomesoplenty:blocks/mud_bricks", + "side": "biomesoplenty:blocks/mud_bricks" } } diff --git a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs_outer.json b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs_outer.json index 1f5719f69..cdc5deb5a 100644 --- a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs_outer.json +++ b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_stairs_outer.json @@ -1,8 +1,8 @@ { "parent": "block/outer_stairs", "textures": { - "bottom": "biomesoplenty:blocks/mud_brick_block", - "top": "biomesoplenty:blocks/mud_brick_block", - "side": "biomesoplenty:blocks/mud_brick_block" + "bottom": "biomesoplenty:blocks/mud_bricks", + "top": "biomesoplenty:blocks/mud_bricks", + "side": "biomesoplenty:blocks/mud_bricks" } } diff --git a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_wall_inventory.json b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_wall_inventory.json new file mode 100644 index 000000000..cae6906e1 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "block/wall_inventory", + "textures": { + "wall": "biomesoplenty:block/mud_bricks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_wall_post.json b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_wall_post.json new file mode 100644 index 000000000..dffb905ea --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "block/template_wall_post", + "textures": { + "wall": "biomesoplenty:block/mud_bricks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_wall_side.json b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_wall_side.json new file mode 100644 index 000000000..8a05aa667 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/mud_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "block/template_wall_side", + "textures": { + "wall": "biomesoplenty:block/mud_bricks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_block.json b/src/main/resources/assets/biomesoplenty/models/block/mud_bricks.json similarity index 52% rename from src/main/resources/assets/biomesoplenty/models/block/mud_brick_block.json rename to src/main/resources/assets/biomesoplenty/models/block/mud_bricks.json index bfcf495de..c151c9bd5 100644 --- a/src/main/resources/assets/biomesoplenty/models/block/mud_brick_block.json +++ b/src/main/resources/assets/biomesoplenty/models/block/mud_bricks.json @@ -1,6 +1,6 @@ { "parent": "block/cube_all", "textures": { - "all": "biomesoplenty:blocks/mud_brick_block" + "all": "biomesoplenty:blocks/mud_bricks" } } diff --git a/src/main/resources/assets/biomesoplenty/models/block/palm_sign.json b/src/main/resources/assets/biomesoplenty/models/block/palm_sign.json new file mode 100644 index 000000000..c1d1d1323 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/palm_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/palm_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/redwood_sign.json b/src/main/resources/assets/biomesoplenty/models/block/redwood_sign.json new file mode 100644 index 000000000..03ccf517e --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/redwood_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/redwood_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_slab.json b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_slab.json new file mode 100644 index 000000000..d2f414168 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "block/slab", + "textures": { + "bottom": "biomesoplenty:block/white_sandstone_top", + "top": "biomesoplenty:block/white_sandstone_top", + "side": "biomesoplenty:block/white_sandstone_top" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_slab_top.json b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_slab_top.json new file mode 100644 index 000000000..e6845efd7 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "block/slab_top", + "textures": { + "bottom": "biomesoplenty:block/white_sandstone_top", + "top": "biomesoplenty:block/white_sandstone_top", + "side": "biomesoplenty:block/white_sandstone_top" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_stairs.json b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_stairs.json new file mode 100644 index 000000000..bcd88f0f3 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "block/stairs", + "textures": { + "bottom": "biomesoplenty:block/white_sandstone_top", + "top": "biomesoplenty:block/white_sandstone_top", + "side": "biomesoplenty:block/white_sandstone_top" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_stairs_inner.json b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_stairs_inner.json new file mode 100644 index 000000000..8a57baabf --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "block/inner_stairs", + "textures": { + "bottom": "biomesoplenty:block/white_sandstone_top", + "top": "biomesoplenty:block/white_sandstone_top", + "side": "biomesoplenty:block/white_sandstone_top" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_stairs_outer.json b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_stairs_outer.json new file mode 100644 index 000000000..f7fc574c4 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/smooth_white_sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "block/outer_stairs", + "textures": { + "bottom": "biomesoplenty:block/white_sandstone_top", + "top": "biomesoplenty:block/white_sandstone_top", + "side": "biomesoplenty:block/white_sandstone_top" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/umbran_sign.json b/src/main/resources/assets/biomesoplenty/models/block/umbran_sign.json new file mode 100644 index 000000000..6d6cfa694 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/umbran_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/umbran_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/white_sandstone_wall_inventory.json b/src/main/resources/assets/biomesoplenty/models/block/white_sandstone_wall_inventory.json new file mode 100644 index 000000000..3affd5d8e --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/white_sandstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "block/wall_inventory", + "textures": { + "wall": "biomesoplenty:block/white_sandstone" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/white_sandstone_wall_post.json b/src/main/resources/assets/biomesoplenty/models/block/white_sandstone_wall_post.json new file mode 100644 index 000000000..d33c97b79 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/white_sandstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "block/template_wall_post", + "textures": { + "wall": "biomesoplenty:block/white_sandstone" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/white_sandstone_wall_side.json b/src/main/resources/assets/biomesoplenty/models/block/white_sandstone_wall_side.json new file mode 100644 index 000000000..1ac490c34 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/white_sandstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "block/template_wall_side", + "textures": { + "wall": "biomesoplenty:block/white_sandstone" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/block/willow_sign.json b/src/main/resources/assets/biomesoplenty/models/block/willow_sign.json new file mode 100644 index 000000000..1b23f6106 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/willow_sign.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "biomesoplenty:block/willow_planks" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/cherry_sign.json b/src/main/resources/assets/biomesoplenty/models/item/cherry_sign.json new file mode 100644 index 000000000..f08422c9d --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/cherry_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/cherry_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/cut_white_sandstone_slab.json b/src/main/resources/assets/biomesoplenty/models/item/cut_white_sandstone_slab.json new file mode 100644 index 000000000..b02e6847d --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/cut_white_sandstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "biomesoplenty:block/cut_white_sandstone_slab" +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/dead_sign.json b/src/main/resources/assets/biomesoplenty/models/item/dead_sign.json new file mode 100644 index 000000000..1000407f8 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/dead_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/dead_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/ethereal_sign.json b/src/main/resources/assets/biomesoplenty/models/item/ethereal_sign.json new file mode 100644 index 000000000..173a72a53 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/ethereal_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/ethereal_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/fir_sign.json b/src/main/resources/assets/biomesoplenty/models/item/fir_sign.json new file mode 100644 index 000000000..8f8d408dd --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/fir_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/fir_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/hellbark_sign.json b/src/main/resources/assets/biomesoplenty/models/item/hellbark_sign.json new file mode 100644 index 000000000..574f6bc14 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/hellbark_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/hellbark_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/jacaranda_sign.json b/src/main/resources/assets/biomesoplenty/models/item/jacaranda_sign.json new file mode 100644 index 000000000..631a58ce4 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/jacaranda_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/jacaranda_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/magic_sign.json b/src/main/resources/assets/biomesoplenty/models/item/magic_sign.json new file mode 100644 index 000000000..9705c3ce8 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/magic_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/magic_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/mahogany_sign.json b/src/main/resources/assets/biomesoplenty/models/item/mahogany_sign.json new file mode 100644 index 000000000..ce5648bad --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/mahogany_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/mahogany_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/mud_brick_wall.json b/src/main/resources/assets/biomesoplenty/models/item/mud_brick_wall.json new file mode 100644 index 000000000..91e4bb9c8 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/mud_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "biomesoplenty:block/mud_brick_wall_inventory" +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/mud_brick_block.json b/src/main/resources/assets/biomesoplenty/models/item/mud_bricks.json similarity index 78% rename from src/main/resources/assets/biomesoplenty/models/item/mud_brick_block.json rename to src/main/resources/assets/biomesoplenty/models/item/mud_bricks.json index e3bf26f52..5e3cb6a48 100644 --- a/src/main/resources/assets/biomesoplenty/models/item/mud_brick_block.json +++ b/src/main/resources/assets/biomesoplenty/models/item/mud_bricks.json @@ -1,5 +1,5 @@ { - "parent": "biomesoplenty:block/mud_brick_block", + "parent": "biomesoplenty:block/mud_bricks", "display": { "thirdperson": { "rotation": [ 10, -45, 170 ], diff --git a/src/main/resources/assets/biomesoplenty/models/item/palm_sign.json b/src/main/resources/assets/biomesoplenty/models/item/palm_sign.json new file mode 100644 index 000000000..9f1fb0110 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/palm_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/palm_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/redwood_sign.json b/src/main/resources/assets/biomesoplenty/models/item/redwood_sign.json new file mode 100644 index 000000000..dca253b4e --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/redwood_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/redwood_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/smooth_white_sandstone_slab.json b/src/main/resources/assets/biomesoplenty/models/item/smooth_white_sandstone_slab.json new file mode 100644 index 000000000..11832a739 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/smooth_white_sandstone_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "biomesoplenty:block/smooth_white_sandstone_slab" +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/smooth_white_sandstone_stairs.json b/src/main/resources/assets/biomesoplenty/models/item/smooth_white_sandstone_stairs.json new file mode 100644 index 000000000..902c6a199 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/smooth_white_sandstone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "biomesoplenty:block/smooth_white_sandstone_stairs" +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/umbran_sign.json b/src/main/resources/assets/biomesoplenty/models/item/umbran_sign.json new file mode 100644 index 000000000..7cc29a40a --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/umbran_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/umbran_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/white_sandstone_wall.json b/src/main/resources/assets/biomesoplenty/models/item/white_sandstone_wall.json new file mode 100644 index 000000000..8e3864a87 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/white_sandstone_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "biomesoplenty:block/white_sandstone_wall_inventory" +} diff --git a/src/main/resources/assets/biomesoplenty/models/item/willow_sign.json b/src/main/resources/assets/biomesoplenty/models/item/willow_sign.json new file mode 100644 index 000000000..eecf6dc46 --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/item/willow_sign.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "biomesoplenty:item/willow_sign" + } +} diff --git a/src/main/resources/assets/biomesoplenty/textures/blocks/mud_brick_block.png b/src/main/resources/assets/biomesoplenty/textures/blocks/mud_bricks.png similarity index 100% rename from src/main/resources/assets/biomesoplenty/textures/blocks/mud_brick_block.png rename to src/main/resources/assets/biomesoplenty/textures/blocks/mud_bricks.png diff --git a/src/main/resources/assets/biomesoplenty/textures/entity/signs/fir.png b/src/main/resources/assets/biomesoplenty/textures/entity/signs/fir.png new file mode 100644 index 000000000..e0f236858 Binary files /dev/null and b/src/main/resources/assets/biomesoplenty/textures/entity/signs/fir.png differ diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/chiseled_white_sandstone_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/chiseled_white_sandstone_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..ae0944e63 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/chiseled_white_sandstone_from_white_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:chiseled_white_sandstone_from_white_sandstone_stonecutting" + ] + }, + "criteria": { + "has_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:chiseled_white_sandstone_from_white_sandstone_stonecutting" + } + } + }, + "requirements": [ + [ + "has_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..fd1d05ab6 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_from_white_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:cut_white_sandstone_from_white_sandstone_stonecutting" + ] + }, + "criteria": { + "has_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:cut_white_sandstone_from_white_sandstone_stonecutting" + } + } + }, + "requirements": [ + [ + "has_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_slab.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_slab.json new file mode 100644 index 000000000..91526aa34 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:cut_white_sandstone_slab" + ] + }, + "criteria": { + "has_cut_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:cut_white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:cut_white_sandstone_slab" + } + } + }, + "requirements": [ + [ + "has_cut_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_slab_from_cut_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_slab_from_cut_white_sandstone_stonecutting.json new file mode 100644 index 000000000..8d1786c5f --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_slab_from_cut_white_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:cut_white_sandstone_slab_from_cut_white_sandstone_stonecutting" + ] + }, + "criteria": { + "has_cut_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:cut_white_sandstone_slab_from_cut_white_sandstone_stonecutting" + } + } + }, + "requirements": [ + [ + "has_cut_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_slab_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_slab_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..0d1130840 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/cut_white_sandstone_slab_from_white_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:cut_white_sandstone_slab_from_white_sandstone_stonecutting" + ] + }, + "criteria": { + "has_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:cut_white_sandstone_slab_from_white_sandstone_stonecutting" + } + } + }, + "requirements": [ + [ + "has_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/mud_bricks_slab.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/mud_bricks_slab.json index d8a5d7850..1e8cb9016 100644 --- a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/mud_bricks_slab.json +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/mud_bricks_slab.json @@ -16,7 +16,7 @@ "conditions": { "items": [ { - "item": "biomesoplenty:mud_brick_block" + "item": "biomesoplenty:mud_bricks" } ] } diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/mud_bricks_stairs.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/mud_bricks_stairs.json index 6f450d2ae..71e5a5682 100644 --- a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/mud_bricks_stairs.json +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/mud_bricks_stairs.json @@ -16,7 +16,7 @@ "conditions": { "items": [ { - "item": "biomesoplenty:mud_brick_block" + "item": "biomesoplenty:mud_bricks" } ] } diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_slab.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_slab.json new file mode 100644 index 000000000..1f5a36b0a --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:smooth_white_sandstone_slab" + ] + }, + "criteria": { + "has_smooth_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:smooth_white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:smooth_white_sandstone_slab" + } + } + }, + "requirements": [ + [ + "has_smooth_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_slab_from_smooth_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_slab_from_smooth_white_sandstone_stonecutting.json new file mode 100644 index 000000000..5a399d809 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_slab_from_smooth_white_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:smooth_white_sandstone_slab_from_smooth_white_sandstone_stonecutting" + ] + }, + "criteria": { + "has_smooth_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:smooth_white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:smooth_white_sandstone_slab_from_smooth_white_sandstone_stonecutting" + } + } + }, + "requirements": [ + [ + "has_smooth_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_stairs.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_stairs.json new file mode 100644 index 000000000..03c9ab1fc --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:smooth_white_sandstone_stairs" + ] + }, + "criteria": { + "has_smooth_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:smooth_white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:smooth_white_sandstone_stairs" + } + } + }, + "requirements": [ + [ + "has_smooth_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_stairs_from_smooth_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_stairs_from_smooth_white_sandstone_stonecutting.json new file mode 100644 index 000000000..f89b52b49 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/smooth_white_sandstone_stairs_from_smooth_white_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:smooth_white_sandstone_stairs_from_smooth_white_sandstone_stonecutting" + ] + }, + "criteria": { + "has_smooth_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:smooth_white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:smooth_white_sandstone_stairs_from_smooth_white_sandstone_stonecutting" + } + } + }, + "requirements": [ + [ + "has_smooth_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/white_sandstone_slab_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/white_sandstone_slab_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..9fd1474a0 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/white_sandstone_slab_from_white_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:white_sandstone_slab_from_white_sandstone_stonecutting" + ] + }, + "criteria": { + "has_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:white_sandstone_slab_from_white_sandstone_stonecutting" + } + } + }, + "requirements": [ + [ + "has_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/white_sandstone_stairs_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/white_sandstone_stairs_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..470f89478 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/white_sandstone_stairs_from_white_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:white_sandstone_stairs_from_white_sandstone_stonecutting" + ] + }, + "criteria": { + "has_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:white_sandstone_stairs_from_white_sandstone_stonecutting" + } + } + }, + "requirements": [ + [ + "has_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/cherry_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/cherry_sign.json new file mode 100644 index 000000000..831343330 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/cherry_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:cherry_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:cherry_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:cherry_sign" + } + } + }, + "requirements": [ + [ + "has_cherry_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/dead_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/dead_sign.json new file mode 100644 index 000000000..08ab388da --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/dead_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:dead_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:dead_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:dead_sign" + } + } + }, + "requirements": [ + [ + "has_dead_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/ethereal_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/ethereal_sign.json new file mode 100644 index 000000000..7540b5d28 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/ethereal_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:ethereal_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:ethereal_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:ethereal_sign" + } + } + }, + "requirements": [ + [ + "has_ethereal_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/fir_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/fir_sign.json new file mode 100644 index 000000000..7f2f564d4 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/fir_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:fir_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:fir_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:fir_sign" + } + } + }, + "requirements": [ + [ + "has_fir_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/hellbark_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/hellbark_sign.json new file mode 100644 index 000000000..adc23bdc7 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/hellbark_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:hellbark_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:hellbark_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:hellbark_sign" + } + } + }, + "requirements": [ + [ + "has_hellbark_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/jacaranda_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/jacaranda_sign.json new file mode 100644 index 000000000..3ccbf0a1d --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/jacaranda_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:jacaranda_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:jacaranda_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:jacaranda_sign" + } + } + }, + "requirements": [ + [ + "has_jacaranda_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/magic_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/magic_sign.json new file mode 100644 index 000000000..926c5a481 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/magic_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:magic_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:magic_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:magic_sign" + } + } + }, + "requirements": [ + [ + "has_magic_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/mahogany_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/mahogany_sign.json new file mode 100644 index 000000000..4f4759f4c --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/mahogany_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:mahogany_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:mahogany_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:mahogany_sign" + } + } + }, + "requirements": [ + [ + "has_mahogany_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/mud_brick_wall.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/mud_brick_wall.json new file mode 100644 index 000000000..cef5b49dd --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/mud_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:mud_brick_wall" + ] + }, + "criteria": { + "has_bricks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:mud_bricks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:mud_brick_wall" + } + } + }, + "requirements": [ + [ + "has_bricks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json new file mode 100644 index 000000000..87e389da9 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:mud_brick_wall_from_mud_bricks_stonecutting" + ] + }, + "criteria": { + "has_bricks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:mud_bricks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:mud_brick_wall_from_mud_bricks_stonecutting" + } + } + }, + "requirements": [ + [ + "has_bricks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/palm_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/palm_sign.json new file mode 100644 index 000000000..0aa3d835a --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/palm_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:palm_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:palm_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:palm_sign" + } + } + }, + "requirements": [ + [ + "has_palm_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/redwood_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/redwood_sign.json new file mode 100644 index 000000000..d7a8f0a04 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/redwood_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:redwood_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:redwood_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:redwood_sign" + } + } + }, + "requirements": [ + [ + "has_redwood_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/umbran_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/umbran_sign.json new file mode 100644 index 000000000..807f51a3a --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/umbran_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:umbran_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:umbran_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:umbran_sign" + } + } + }, + "requirements": [ + [ + "has_umbran_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/white_sandstone_wall.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/white_sandstone_wall.json new file mode 100644 index 000000000..7a7e130f9 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/white_sandstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:white_sandstone_wall" + ] + }, + "criteria": { + "has_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:white_sandstone_wall" + } + } + }, + "requirements": [ + [ + "has_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/white_sandstone_wall_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/white_sandstone_wall_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..6d6e431f0 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/white_sandstone_wall_from_white_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:white_sandstone_wall_from_white_sandstone_stonecutting" + ] + }, + "criteria": { + "has_white_sandstone": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:white_sandstone" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:white_sandstone_wall_from_white_sandstone_stonecutting" + } + } + }, + "requirements": [ + [ + "has_white_sandstone", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/willow_sign.json b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/willow_sign.json new file mode 100644 index 000000000..27b6217f5 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/decorations/willow_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:willow_sign" + ] + }, + "criteria": { + "has_oak_planks": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:willow_planks" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:willow_sign" + } + } + }, + "requirements": [ + [ + "has_willow_planks", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/cherry_sign.json b/src/main/resources/data/biomesoplenty/recipes/cherry_sign.json new file mode 100644 index 000000000..a1e32b0cf --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/cherry_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:cherry_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:cherry_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/chiseled_white_sandstone_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/chiseled_white_sandstone_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..e6d42f790 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/chiseled_white_sandstone_from_white_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:white_sandstone" + }, + "result": "biomesoplenty:chiseled_white_sandstone", + "count": 1 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..520a925dd --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_from_white_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:white_sandstone" + }, + "result": "biomesoplenty:cut_white_sandstone", + "count": 1 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_slab.json b/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_slab.json new file mode 100644 index 000000000..568c317db --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "biomesoplenty:cut_white_sandstone" + } + }, + "result": { + "item": "biomesoplenty:cut_white_sandstone_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_slab_from_cut_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_slab_from_cut_white_sandstone_stonecutting.json new file mode 100644 index 000000000..1813e188b --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_slab_from_cut_white_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:cut_white_sandstone" + }, + "result": "biomesoplenty:cut_white_sandstone_slab", + "count": 2 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_slab_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_slab_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..87b444c9c --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/cut_white_sandstone_slab_from_white_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:white_sandstone" + }, + "result": "biomesoplenty:cut_white_sandstone_slab", + "count": 2 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/dead_sign.json b/src/main/resources/data/biomesoplenty/recipes/dead_sign.json new file mode 100644 index 000000000..0b182673a --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/dead_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:dead_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:dead_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/ethereal_sign.json b/src/main/resources/data/biomesoplenty/recipes/ethereal_sign.json new file mode 100644 index 000000000..a2d94e34f --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/ethereal_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:ethereal_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:ethereal_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/fir_sign.json b/src/main/resources/data/biomesoplenty/recipes/fir_sign.json new file mode 100644 index 000000000..475f69eff --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/fir_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:fir_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:fir_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/cactus_green_from_tiny_cactus.json b/src/main/resources/data/biomesoplenty/recipes/green_dye_from_tiny_cactus.json similarity index 77% rename from src/main/resources/data/biomesoplenty/recipes/cactus_green_from_tiny_cactus.json rename to src/main/resources/data/biomesoplenty/recipes/green_dye_from_tiny_cactus.json index c0656fd61..c682c9b97 100644 --- a/src/main/resources/data/biomesoplenty/recipes/cactus_green_from_tiny_cactus.json +++ b/src/main/resources/data/biomesoplenty/recipes/green_dye_from_tiny_cactus.json @@ -3,7 +3,7 @@ "ingredient": { "item": "biomesoplenty:tiny_cactus" }, - "result": "minecraft:cactus_green", + "result": "minecraft:green_dye", "experience": 1.0, "cookingtime": 200 } \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/hellbark_sign.json b/src/main/resources/data/biomesoplenty/recipes/hellbark_sign.json new file mode 100644 index 000000000..91b7442c1 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/hellbark_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:hellbark_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:hellbark_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/jacaranda_sign.json b/src/main/resources/data/biomesoplenty/recipes/jacaranda_sign.json new file mode 100644 index 000000000..029aa462a --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/jacaranda_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:jacaranda_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:jacaranda_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/magic_sign.json b/src/main/resources/data/biomesoplenty/recipes/magic_sign.json new file mode 100644 index 000000000..70c4d3be7 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/magic_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:magic_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:magic_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/mahogany_sign.json b/src/main/resources/data/biomesoplenty/recipes/mahogany_sign.json new file mode 100644 index 000000000..a009497aa --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/mahogany_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:mahogany_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:mahogany_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/mud_bricks_slab.json b/src/main/resources/data/biomesoplenty/recipes/mud_brick_slab.json similarity index 79% rename from src/main/resources/data/biomesoplenty/recipes/mud_bricks_slab.json rename to src/main/resources/data/biomesoplenty/recipes/mud_brick_slab.json index 3a1892002..9bee50908 100644 --- a/src/main/resources/data/biomesoplenty/recipes/mud_bricks_slab.json +++ b/src/main/resources/data/biomesoplenty/recipes/mud_brick_slab.json @@ -5,7 +5,7 @@ ], "key": { "#": { - "item": "biomesoplenty:mud_brick_block" + "item": "biomesoplenty:mud_bricks" } }, "result": { diff --git a/src/main/resources/data/biomesoplenty/recipes/mud_bricks_stairs.json b/src/main/resources/data/biomesoplenty/recipes/mud_brick_stairs.json similarity index 81% rename from src/main/resources/data/biomesoplenty/recipes/mud_bricks_stairs.json rename to src/main/resources/data/biomesoplenty/recipes/mud_brick_stairs.json index 0931e30a8..996d40222 100644 --- a/src/main/resources/data/biomesoplenty/recipes/mud_bricks_stairs.json +++ b/src/main/resources/data/biomesoplenty/recipes/mud_brick_stairs.json @@ -7,7 +7,7 @@ ], "key": { "#": { - "item": "biomesoplenty:mud_brick_block" + "item": "biomesoplenty:mud_bricks" } }, "result": { diff --git a/src/main/resources/data/biomesoplenty/recipes/mud_brick_wall.json b/src/main/resources/data/biomesoplenty/recipes/mud_brick_wall.json new file mode 100644 index 000000000..c3b1a2d14 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/mud_brick_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "biomesoplenty:mud_bricks" + } + }, + "result": { + "item": "biomesoplenty:mud_brick_wall", + "count": 6 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/mud_brick_wall_from_mud_bricks_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/mud_brick_wall_from_mud_bricks_stonecutting.json new file mode 100644 index 000000000..c3cbd478f --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/mud_brick_wall_from_mud_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:mud_bricks" + }, + "result": "biomesoplenty:mud_brick_wall", + "count": 1 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/mud_bricks.json b/src/main/resources/data/biomesoplenty/recipes/mud_bricks.json index 2feb26121..d28cca676 100644 --- a/src/main/resources/data/biomesoplenty/recipes/mud_bricks.json +++ b/src/main/resources/data/biomesoplenty/recipes/mud_bricks.json @@ -10,6 +10,6 @@ } }, "result": { - "item": "biomesoplenty:mud_brick_block" + "item": "biomesoplenty:mud_bricks" } } \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/palm_sign.json b/src/main/resources/data/biomesoplenty/recipes/palm_sign.json new file mode 100644 index 000000000..ec8e85e8a --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/palm_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:palm_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:palm_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/red_dye_from_rose.json b/src/main/resources/data/biomesoplenty/recipes/red_dye_from_rose.json index fddd94ff6..108f085b0 100644 --- a/src/main/resources/data/biomesoplenty/recipes/red_dye_from_rose.json +++ b/src/main/resources/data/biomesoplenty/recipes/red_dye_from_rose.json @@ -6,7 +6,7 @@ } ], "result": { - "item": "minecraft:rose_red", + "item": "minecraft:red_dye", "count": 2 } } \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/redwood_sign.json b/src/main/resources/data/biomesoplenty/recipes/redwood_sign.json new file mode 100644 index 000000000..ef9c1940e --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/redwood_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:redwood_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:redwood_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_slab.json b/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_slab.json new file mode 100644 index 000000000..c5503fdac --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "biomesoplenty:smooth_white_sandstone" + } + }, + "result": { + "item": "biomesoplenty:smooth_white_sandstone_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_slab_from_smooth_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_slab_from_smooth_white_sandstone_stonecutting.json new file mode 100644 index 000000000..a4f4d0c4f --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_slab_from_smooth_white_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:smooth_white_sandstone" + }, + "result": "biomesoplenty:smooth_white_sandstone_slab", + "count": 2 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_stairs.json b/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_stairs.json new file mode 100644 index 000000000..a177e2714 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "# ", + "## ", + "###" + ], + "key": { + "#": { + "item": "biomesoplenty:smooth_white_sandstone" + } + }, + "result": { + "item": "biomesoplenty:smooth_white_sandstone_stairs", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_stairs_from_smooth_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_stairs_from_smooth_white_sandstone_stonecutting.json new file mode 100644 index 000000000..5fb61fb68 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/smooth_white_sandstone_stairs_from_smooth_white_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:smooth_white_sandstone" + }, + "result": "biomesoplenty:smooth_white_sandstone_stairs", + "count": 1 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/umbran_sign.json b/src/main/resources/data/biomesoplenty/recipes/umbran_sign.json new file mode 100644 index 000000000..c3479ceba --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/umbran_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:umbran_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:umbran_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/white_sandstone_slab_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/white_sandstone_slab_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..ee19e84f2 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/white_sandstone_slab_from_white_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:white_sandstone" + }, + "result": "biomesoplenty:white_sandstone_slab", + "count": 2 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/white_sandstone_stairs_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/white_sandstone_stairs_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..d79bfd1e7 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/white_sandstone_stairs_from_white_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:white_sandstone" + }, + "result": "biomesoplenty:white_sandstone_stairs", + "count": 1 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/white_sandstone_wall.json b/src/main/resources/data/biomesoplenty/recipes/white_sandstone_wall.json new file mode 100644 index 000000000..be4571f26 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/white_sandstone_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "biomesoplenty:white_sandstone" + } + }, + "result": { + "item": "biomesoplenty:white_sandstone_wall", + "count": 6 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/white_sandstone_wall_from_white_sandstone_stonecutting.json b/src/main/resources/data/biomesoplenty/recipes/white_sandstone_wall_from_white_sandstone_stonecutting.json new file mode 100644 index 000000000..caf085ff9 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/white_sandstone_wall_from_white_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "biomesoplenty:white_sandstone" + }, + "result": "biomesoplenty:white_sandstone_wall", + "count": 1 +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/willow_sign.json b/src/main/resources/data/biomesoplenty/recipes/willow_sign.json new file mode 100644 index 000000000..d15d34fe6 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/willow_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###", + " X " + ], + "key": { + "#": { + "item": "biomesoplenty:willow_planks" + }, + "X": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "biomesoplenty:willow_sign", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/yellow_dye_from_goldenrod.json b/src/main/resources/data/biomesoplenty/recipes/yellow_dye_from_goldenrod.json index 263e62289..abfeb6b3a 100644 --- a/src/main/resources/data/biomesoplenty/recipes/yellow_dye_from_goldenrod.json +++ b/src/main/resources/data/biomesoplenty/recipes/yellow_dye_from_goldenrod.json @@ -6,7 +6,7 @@ } ], "result": { - "item": "minecraft:dandelion_yellow", + "item": "minecraft:yellow_dye", "count": 2 } } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/leaves.json b/src/main/resources/data/minecraft/tags/blocks/leaves.json index 0197960ea..0fdc96117 100644 --- a/src/main/resources/data/minecraft/tags/blocks/leaves.json +++ b/src/main/resources/data/minecraft/tags/blocks/leaves.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:jungle_leaves", - "minecraft:oak_leaves", - "minecraft:spruce_leaves", - "minecraft:dark_oak_leaves", - "minecraft:acacia_leaves", - "minecraft:birch_leaves", "biomesoplenty:origin_leaves", "biomesoplenty:flowering_oak_leaves", "biomesoplenty:yellow_autumn_leaves", diff --git a/src/main/resources/data/minecraft/tags/blocks/logs.json b/src/main/resources/data/minecraft/tags/blocks/logs.json index f410adfda..c7620e25b 100644 --- a/src/main/resources/data/minecraft/tags/blocks/logs.json +++ b/src/main/resources/data/minecraft/tags/blocks/logs.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "#minecraft:dark_oak_logs", - "#minecraft:oak_logs", - "#minecraft:acacia_logs", - "#minecraft:birch_logs", - "#minecraft:jungle_logs", - "#minecraft:spruce_logs", "#biomesoplenty:fir_logs", "#biomesoplenty:redwood_logs", "#biomesoplenty:cherry_logs", diff --git a/src/main/resources/data/minecraft/tags/blocks/planks.json b/src/main/resources/data/minecraft/tags/blocks/planks.json index 1d91edd4a..1b59299c6 100644 --- a/src/main/resources/data/minecraft/tags/blocks/planks.json +++ b/src/main/resources/data/minecraft/tags/blocks/planks.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:dark_oak_planks", "biomesoplenty:fir_planks", "biomesoplenty:redwood_planks", "biomesoplenty:cherry_planks", diff --git a/src/main/resources/data/minecraft/tags/blocks/sand.json b/src/main/resources/data/minecraft/tags/blocks/sand.json index da27fb220..fa6275522 100644 --- a/src/main/resources/data/minecraft/tags/blocks/sand.json +++ b/src/main/resources/data/minecraft/tags/blocks/sand.json @@ -1,8 +1,6 @@ { "replace": false, "values": [ - "minecraft:sand", - "minecraft:red_sand", "biomesoplenty:white_sand" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/saplings.json b/src/main/resources/data/minecraft/tags/blocks/saplings.json index 5fcff1f37..9bb174c6d 100644 --- a/src/main/resources/data/minecraft/tags/blocks/saplings.json +++ b/src/main/resources/data/minecraft/tags/blocks/saplings.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_sapling", - "minecraft:spruce_sapling", - "minecraft:birch_sapling", - "minecraft:jungle_sapling", - "minecraft:acacia_sapling", - "minecraft:dark_oak_sapling", "biomesoplenty:origin_sapling", "biomesoplenty:flowering_oak_sapling", "biomesoplenty:yellow_autumn_sapling", diff --git a/src/main/resources/data/minecraft/tags/blocks/slabs.json b/src/main/resources/data/minecraft/tags/blocks/slabs.json index ebd28c16f..872f291c9 100644 --- a/src/main/resources/data/minecraft/tags/blocks/slabs.json +++ b/src/main/resources/data/minecraft/tags/blocks/slabs.json @@ -1,26 +1,9 @@ { "replace": false, "values": [ - "minecraft:stone_slab", - "minecraft:stone_brick_slab", - "minecraft:sandstone_slab", - "minecraft:acacia_slab", - "minecraft:birch_slab", - "minecraft:dark_oak_slab", - "minecraft:jungle_slab", - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:purpur_slab", - "minecraft:quartz_slab", - "minecraft:red_sandstone_slab", - "minecraft:brick_slab", - "minecraft:cobblestone_slab", - "minecraft:nether_brick_slab", - "minecraft:petrified_oak_slab", - "minecraft:prismarine_slab", - "minecraft:prismarine_brick_slab", - "minecraft:dark_prismarine_slab", "biomesoplenty:white_sandstone_slab", + "biomesoplenty:cut_white_sandstone_slab", + "biomesoplenty:smooth_white_sandstone_slab", "biomesoplenty:mud_brick_slab", "biomesoplenty:fir_slab", "biomesoplenty:redwood_slab", diff --git a/src/main/resources/data/minecraft/tags/blocks/stairs.json b/src/main/resources/data/minecraft/tags/blocks/stairs.json index 1fe1462b0..1a00ef695 100644 --- a/src/main/resources/data/minecraft/tags/blocks/stairs.json +++ b/src/main/resources/data/minecraft/tags/blocks/stairs.json @@ -1,24 +1,8 @@ { "replace": false, "values": [ - "minecraft:oak_stairs", - "minecraft:cobblestone_stairs", - "minecraft:spruce_stairs", - "minecraft:sandstone_stairs", - "minecraft:acacia_stairs", - "minecraft:jungle_stairs", - "minecraft:birch_stairs", - "minecraft:dark_oak_stairs", - "minecraft:nether_brick_stairs", - "minecraft:stone_brick_stairs", - "minecraft:brick_stairs", - "minecraft:purpur_stairs", - "minecraft:quartz_stairs", - "minecraft:red_sandstone_stairs", - "minecraft:prismarine_brick_stairs", - "minecraft:prismarine_stairs", - "minecraft:dark_prismarine_stairs", "biomesoplenty:white_sandstone_stairs", + "biomesoplenty:smooth_white_sandstone_stairs", "biomesoplenty:mud_brick_stairs", "biomesoplenty:fir_stairs", "biomesoplenty:redwood_stairs", diff --git a/src/main/resources/data/minecraft/tags/blocks/standing_signs.json b/src/main/resources/data/minecraft/tags/blocks/standing_signs.json new file mode 100644 index 000000000..f04f4a51c --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/standing_signs.json @@ -0,0 +1,17 @@ +{ + "replace": false, + "values": [ + "biomesoplenty:fir_sign", + "biomesoplenty:redwood_sign", + "biomesoplenty:cherry_sign", + "biomesoplenty:mahogany_sign", + "biomesoplenty:jacaranda_sign", + "biomesoplenty:palm_sign", + "biomesoplenty:willow_sign", + "biomesoplenty:dead_sign", + "biomesoplenty:magic_sign", + "biomesoplenty:umbran_sign", + "biomesoplenty:hellbark_sign", + "biomesoplenty:ethereal_sign" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wall_signs.json b/src/main/resources/data/minecraft/tags/blocks/wall_signs.json new file mode 100644 index 000000000..8dd745c51 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/wall_signs.json @@ -0,0 +1,17 @@ +{ + "replace": false, + "values": [ + "biomesoplenty:fir_wall_sign", + "biomesoplenty:redwood_wall_sign", + "biomesoplenty:cherry_wall_sign", + "biomesoplenty:mahogany_wall_sign", + "biomesoplenty:jacaranda_wall_sign", + "biomesoplenty:palm_wall_sign", + "biomesoplenty:willow_wall_sign", + "biomesoplenty:dead_wall_sign", + "biomesoplenty:magic_wall_sign", + "biomesoplenty:umbran_wall_sign", + "biomesoplenty:hellbark_wall_sign", + "biomesoplenty:ethereal_wall_sign" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/walls.json b/src/main/resources/data/minecraft/tags/blocks/walls.json new file mode 100644 index 000000000..2adebe029 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/walls.json @@ -0,0 +1,7 @@ +{ + "replace": false, + "values": [ + "biomesoplenty:mud_brick_wall", + "biomesoplenty:white_sandstone_wall" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json b/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json index 598012a11..e51cd4960 100644 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json +++ b/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_button", - "minecraft:spruce_button", - "minecraft:birch_button", - "minecraft:jungle_button", - "minecraft:acacia_button", - "minecraft:dark_oak_button", "biomesoplenty:fir_button", "biomesoplenty:redwood_button", "biomesoplenty:cherry_button", diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json b/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json index 8c6293f68..686915b1e 100644 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json +++ b/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_door", - "minecraft:spruce_door", - "minecraft:birch_door", - "minecraft:jungle_door", - "minecraft:acacia_door", - "minecraft:dark_oak_door", "biomesoplenty:fir_door", "biomesoplenty:redwood_door", "biomesoplenty:cherry_door", diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json b/src/main/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json index 05c73fd69..6c8cfbd4a 100644 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json +++ b/src/main/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_pressure_plate", - "minecraft:spruce_pressure_plate", - "minecraft:birch_pressure_plate", - "minecraft:jungle_pressure_plate", - "minecraft:acacia_pressure_plate", - "minecraft:dark_oak_pressure_plate", "biomesoplenty:fir_pressure_plate", "biomesoplenty:redwood_pressure_plate", "biomesoplenty:cherry_pressure_plate", diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json b/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json index 0b94c6290..d91620135 100644 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json +++ b/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:birch_slab", - "minecraft:jungle_slab", - "minecraft:acacia_slab", - "minecraft:dark_oak_slab", "biomesoplenty:fir_slab", "biomesoplenty:redwood_slab", "biomesoplenty:cherry_slab", diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json b/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json index 1c57879c7..f5e139f6e 100644 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json +++ b/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_stairs", - "minecraft:spruce_stairs", - "minecraft:birch_stairs", - "minecraft:jungle_stairs", - "minecraft:acacia_stairs", - "minecraft:dark_oak_stairs", "biomesoplenty:fir_stairs", "biomesoplenty:redwood_stairs", "biomesoplenty:cherry_stairs", diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json b/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json index 3ebaf60a4..679d28817 100644 --- a/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json +++ b/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:acacia_trapdoor", - "minecraft:birch_trapdoor", - "minecraft:dark_oak_trapdoor", - "minecraft:jungle_trapdoor", - "minecraft:oak_trapdoor", - "minecraft:spruce_trapdoor", "biomesoplenty:fir_trapdoor", "biomesoplenty:redwood_trapdoor", "biomesoplenty:cherry_trapdoor", diff --git a/src/main/resources/data/minecraft/tags/items/boats.json b/src/main/resources/data/minecraft/tags/items/boats.json index 89a343631..f101783e6 100644 --- a/src/main/resources/data/minecraft/tags/items/boats.json +++ b/src/main/resources/data/minecraft/tags/items/boats.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_boat", - "minecraft:spruce_boat", - "minecraft:birch_boat", - "minecraft:jungle_boat", - "minecraft:acacia_boat", - "minecraft:dark_oak_boat", "biomesoplenty:fir_boat", "biomesoplenty:redwood_boat", "biomesoplenty:cherry_boat", diff --git a/src/main/resources/data/minecraft/tags/items/leaves.json b/src/main/resources/data/minecraft/tags/items/leaves.json index 0197960ea..0fdc96117 100644 --- a/src/main/resources/data/minecraft/tags/items/leaves.json +++ b/src/main/resources/data/minecraft/tags/items/leaves.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:jungle_leaves", - "minecraft:oak_leaves", - "minecraft:spruce_leaves", - "minecraft:dark_oak_leaves", - "minecraft:acacia_leaves", - "minecraft:birch_leaves", "biomesoplenty:origin_leaves", "biomesoplenty:flowering_oak_leaves", "biomesoplenty:yellow_autumn_leaves", diff --git a/src/main/resources/data/minecraft/tags/items/logs.json b/src/main/resources/data/minecraft/tags/items/logs.json index 5bf60ee10..c7620e25b 100644 --- a/src/main/resources/data/minecraft/tags/items/logs.json +++ b/src/main/resources/data/minecraft/tags/items/logs.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "#minecraft:dark_oak_logs", - "#minecraft:oak_logs", - "#minecraft:acacia_logs", - "#minecraft:birch_logs", - "#minecraft:jungle_logs", - "#minecraft:spruce_logs", "#biomesoplenty:fir_logs", "#biomesoplenty:redwood_logs", "#biomesoplenty:cherry_logs", diff --git a/src/main/resources/data/minecraft/tags/items/planks.json b/src/main/resources/data/minecraft/tags/items/planks.json index 1d91edd4a..1b59299c6 100644 --- a/src/main/resources/data/minecraft/tags/items/planks.json +++ b/src/main/resources/data/minecraft/tags/items/planks.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_planks", - "minecraft:spruce_planks", - "minecraft:birch_planks", - "minecraft:jungle_planks", - "minecraft:acacia_planks", - "minecraft:dark_oak_planks", "biomesoplenty:fir_planks", "biomesoplenty:redwood_planks", "biomesoplenty:cherry_planks", diff --git a/src/main/resources/data/minecraft/tags/items/sand.json b/src/main/resources/data/minecraft/tags/items/sand.json index da27fb220..fa6275522 100644 --- a/src/main/resources/data/minecraft/tags/items/sand.json +++ b/src/main/resources/data/minecraft/tags/items/sand.json @@ -1,8 +1,6 @@ { "replace": false, "values": [ - "minecraft:sand", - "minecraft:red_sand", "biomesoplenty:white_sand" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/saplings.json b/src/main/resources/data/minecraft/tags/items/saplings.json index 5fcff1f37..9bb174c6d 100644 --- a/src/main/resources/data/minecraft/tags/items/saplings.json +++ b/src/main/resources/data/minecraft/tags/items/saplings.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_sapling", - "minecraft:spruce_sapling", - "minecraft:birch_sapling", - "minecraft:jungle_sapling", - "minecraft:acacia_sapling", - "minecraft:dark_oak_sapling", "biomesoplenty:origin_sapling", "biomesoplenty:flowering_oak_sapling", "biomesoplenty:yellow_autumn_sapling", diff --git a/src/main/resources/data/minecraft/tags/items/signs.json b/src/main/resources/data/minecraft/tags/items/signs.json new file mode 100644 index 000000000..f04f4a51c --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/signs.json @@ -0,0 +1,17 @@ +{ + "replace": false, + "values": [ + "biomesoplenty:fir_sign", + "biomesoplenty:redwood_sign", + "biomesoplenty:cherry_sign", + "biomesoplenty:mahogany_sign", + "biomesoplenty:jacaranda_sign", + "biomesoplenty:palm_sign", + "biomesoplenty:willow_sign", + "biomesoplenty:dead_sign", + "biomesoplenty:magic_sign", + "biomesoplenty:umbran_sign", + "biomesoplenty:hellbark_sign", + "biomesoplenty:ethereal_sign" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/slabs.json b/src/main/resources/data/minecraft/tags/items/slabs.json index ebd28c16f..872f291c9 100644 --- a/src/main/resources/data/minecraft/tags/items/slabs.json +++ b/src/main/resources/data/minecraft/tags/items/slabs.json @@ -1,26 +1,9 @@ { "replace": false, "values": [ - "minecraft:stone_slab", - "minecraft:stone_brick_slab", - "minecraft:sandstone_slab", - "minecraft:acacia_slab", - "minecraft:birch_slab", - "minecraft:dark_oak_slab", - "minecraft:jungle_slab", - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:purpur_slab", - "minecraft:quartz_slab", - "minecraft:red_sandstone_slab", - "minecraft:brick_slab", - "minecraft:cobblestone_slab", - "minecraft:nether_brick_slab", - "minecraft:petrified_oak_slab", - "minecraft:prismarine_slab", - "minecraft:prismarine_brick_slab", - "minecraft:dark_prismarine_slab", "biomesoplenty:white_sandstone_slab", + "biomesoplenty:cut_white_sandstone_slab", + "biomesoplenty:smooth_white_sandstone_slab", "biomesoplenty:mud_brick_slab", "biomesoplenty:fir_slab", "biomesoplenty:redwood_slab", diff --git a/src/main/resources/data/minecraft/tags/items/stairs.json b/src/main/resources/data/minecraft/tags/items/stairs.json index 1fe1462b0..1a00ef695 100644 --- a/src/main/resources/data/minecraft/tags/items/stairs.json +++ b/src/main/resources/data/minecraft/tags/items/stairs.json @@ -1,24 +1,8 @@ { "replace": false, "values": [ - "minecraft:oak_stairs", - "minecraft:cobblestone_stairs", - "minecraft:spruce_stairs", - "minecraft:sandstone_stairs", - "minecraft:acacia_stairs", - "minecraft:jungle_stairs", - "minecraft:birch_stairs", - "minecraft:dark_oak_stairs", - "minecraft:nether_brick_stairs", - "minecraft:stone_brick_stairs", - "minecraft:brick_stairs", - "minecraft:purpur_stairs", - "minecraft:quartz_stairs", - "minecraft:red_sandstone_stairs", - "minecraft:prismarine_brick_stairs", - "minecraft:prismarine_stairs", - "minecraft:dark_prismarine_stairs", "biomesoplenty:white_sandstone_stairs", + "biomesoplenty:smooth_white_sandstone_stairs", "biomesoplenty:mud_brick_stairs", "biomesoplenty:fir_stairs", "biomesoplenty:redwood_stairs", diff --git a/src/main/resources/data/minecraft/tags/items/walls.json b/src/main/resources/data/minecraft/tags/items/walls.json new file mode 100644 index 000000000..2adebe029 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/walls.json @@ -0,0 +1,7 @@ +{ + "replace": false, + "values": [ + "biomesoplenty:mud_brick_wall", + "biomesoplenty:white_sandstone_wall" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wooden_buttons.json b/src/main/resources/data/minecraft/tags/items/wooden_buttons.json index 598012a11..e51cd4960 100644 --- a/src/main/resources/data/minecraft/tags/items/wooden_buttons.json +++ b/src/main/resources/data/minecraft/tags/items/wooden_buttons.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_button", - "minecraft:spruce_button", - "minecraft:birch_button", - "minecraft:jungle_button", - "minecraft:acacia_button", - "minecraft:dark_oak_button", "biomesoplenty:fir_button", "biomesoplenty:redwood_button", "biomesoplenty:cherry_button", diff --git a/src/main/resources/data/minecraft/tags/items/wooden_doors.json b/src/main/resources/data/minecraft/tags/items/wooden_doors.json index 8c6293f68..686915b1e 100644 --- a/src/main/resources/data/minecraft/tags/items/wooden_doors.json +++ b/src/main/resources/data/minecraft/tags/items/wooden_doors.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_door", - "minecraft:spruce_door", - "minecraft:birch_door", - "minecraft:jungle_door", - "minecraft:acacia_door", - "minecraft:dark_oak_door", "biomesoplenty:fir_door", "biomesoplenty:redwood_door", "biomesoplenty:cherry_door", diff --git a/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json b/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json index 05c73fd69..6c8cfbd4a 100644 --- a/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json +++ b/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_pressure_plate", - "minecraft:spruce_pressure_plate", - "minecraft:birch_pressure_plate", - "minecraft:jungle_pressure_plate", - "minecraft:acacia_pressure_plate", - "minecraft:dark_oak_pressure_plate", "biomesoplenty:fir_pressure_plate", "biomesoplenty:redwood_pressure_plate", "biomesoplenty:cherry_pressure_plate", diff --git a/src/main/resources/data/minecraft/tags/items/wooden_slabs.json b/src/main/resources/data/minecraft/tags/items/wooden_slabs.json index 0b94c6290..d91620135 100644 --- a/src/main/resources/data/minecraft/tags/items/wooden_slabs.json +++ b/src/main/resources/data/minecraft/tags/items/wooden_slabs.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_slab", - "minecraft:spruce_slab", - "minecraft:birch_slab", - "minecraft:jungle_slab", - "minecraft:acacia_slab", - "minecraft:dark_oak_slab", "biomesoplenty:fir_slab", "biomesoplenty:redwood_slab", "biomesoplenty:cherry_slab", diff --git a/src/main/resources/data/minecraft/tags/items/wooden_stairs.json b/src/main/resources/data/minecraft/tags/items/wooden_stairs.json index 1c57879c7..f5e139f6e 100644 --- a/src/main/resources/data/minecraft/tags/items/wooden_stairs.json +++ b/src/main/resources/data/minecraft/tags/items/wooden_stairs.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:oak_stairs", - "minecraft:spruce_stairs", - "minecraft:birch_stairs", - "minecraft:jungle_stairs", - "minecraft:acacia_stairs", - "minecraft:dark_oak_stairs", "biomesoplenty:fir_stairs", "biomesoplenty:redwood_stairs", "biomesoplenty:cherry_stairs", diff --git a/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json b/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json index 3ebaf60a4..679d28817 100644 --- a/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json +++ b/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json @@ -1,12 +1,6 @@ { "replace": false, "values": [ - "minecraft:acacia_trapdoor", - "minecraft:birch_trapdoor", - "minecraft:dark_oak_trapdoor", - "minecraft:jungle_trapdoor", - "minecraft:oak_trapdoor", - "minecraft:spruce_trapdoor", "biomesoplenty:fir_trapdoor", "biomesoplenty:redwood_trapdoor", "biomesoplenty:cherry_trapdoor",