diff --git a/src/main/java/com/github/mechalopa/jafohana/registry/ModBlocks.java b/src/main/java/com/github/mechalopa/jafohana/registry/ModBlocks.java index ea56b2b..1a20ead 100644 --- a/src/main/java/com/github/mechalopa/jafohana/registry/ModBlocks.java +++ b/src/main/java/com/github/mechalopa/jafohana/registry/ModBlocks.java @@ -84,6 +84,7 @@ public class ModBlocks public static final Supplier FIREWEED = REGISTRY.register("fireweed", () -> new ModTallFlowerBlock()); public static final Supplier ALPINE_RAGWORT = REGISTRY.register("alpine_ragwort", () -> new ModTallFlowerBlock()); public static final Supplier TATARIAN_ASTER = REGISTRY.register("tatarian_aster", () -> new ModTallFlowerBlock()); + public static final Supplier BUTTERFLY_WEED = REGISTRY.register("butterfly_weed", () -> new ModTallFlowerBlock()); public static final Supplier CARDINAL_FLOWER = REGISTRY.register("cardinal_flower", () -> new ModTallFlowerBlock()); public static final Supplier YELLOWFLAG_IRIS = REGISTRY.register("yellowflag_iris", () -> new ModTallFlowerBlock()); public static final Supplier PRINCES_PLUME = REGISTRY.register("princes_plume", () -> new BadlandsTallFlowerBlock()); diff --git a/src/main/java/com/github/mechalopa/jafohana/registry/ModItems.java b/src/main/java/com/github/mechalopa/jafohana/registry/ModItems.java index c400a10..c2b3818 100644 --- a/src/main/java/com/github/mechalopa/jafohana/registry/ModItems.java +++ b/src/main/java/com/github/mechalopa/jafohana/registry/ModItems.java @@ -72,6 +72,7 @@ public class ModItems public static final Supplier FIREWEED = REGISTRY.register("fireweed", () -> new DoubleHighBlockItem(ModBlocks.FIREWEED.get(), new Item.Properties())); public static final Supplier ALPINE_RAGWORT = REGISTRY.register("alpine_ragwort", () -> new DoubleHighBlockItem(ModBlocks.ALPINE_RAGWORT.get(), new Item.Properties())); public static final Supplier TATARIAN_ASTER = REGISTRY.register("tatarian_aster", () -> new DoubleHighBlockItem(ModBlocks.TATARIAN_ASTER.get(), new Item.Properties())); + public static final Supplier BUTTERFLY_WEED = REGISTRY.register("butterfly_weed", () -> new DoubleHighBlockItem(ModBlocks.BUTTERFLY_WEED.get(), new Item.Properties())); public static final Supplier CARDINAL_FLOWER = REGISTRY.register("cardinal_flower", () -> new DoubleHighBlockItem(ModBlocks.CARDINAL_FLOWER.get(), new Item.Properties())); public static final Supplier YELLOWFLAG_IRIS = REGISTRY.register("yellowflag_iris", () -> new DoubleHighBlockItem(ModBlocks.YELLOWFLAG_IRIS.get(), new Item.Properties())); public static final Supplier PRINCES_PLUME = REGISTRY.register("princes_plume", () -> new DoubleHighBlockItem(ModBlocks.PRINCES_PLUME.get(), new Item.Properties())); diff --git a/src/main/resources/assets/jafohana/blockstates/butterfly_weed.json b/src/main/resources/assets/jafohana/blockstates/butterfly_weed.json new file mode 100644 index 0000000..c0753e2 --- /dev/null +++ b/src/main/resources/assets/jafohana/blockstates/butterfly_weed.json @@ -0,0 +1,10 @@ +{ + "variants": { + "half=lower": { + "model": "jafohana:block/butterfly_weed_bottom" + }, + "half=upper": { + "model": "jafohana:block/butterfly_weed_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/jafohana/lang/en_us.json b/src/main/resources/assets/jafohana/lang/en_us.json index 2e47b94..3323760 100644 --- a/src/main/resources/assets/jafohana/lang/en_us.json +++ b/src/main/resources/assets/jafohana/lang/en_us.json @@ -55,6 +55,7 @@ "block.jafohana.fireweed": "Fireweeds", "block.jafohana.alpine_ragwort": "Alpine Ragwort", "block.jafohana.tatarian_aster": "Tatarian Aster", + "block.jafohana.butterfly_weed": "Butterfly Weed", "block.jafohana.cardinal_flower": "Cardinal Flower", "block.jafohana.yellowflag_iris": "Yellowflag Iris", "block.jafohana.princes_plume": "Prince's Plume", diff --git a/src/main/resources/assets/jafohana/lang/ja_jp.json b/src/main/resources/assets/jafohana/lang/ja_jp.json index 1be76c5..ee8fcf3 100644 --- a/src/main/resources/assets/jafohana/lang/ja_jp.json +++ b/src/main/resources/assets/jafohana/lang/ja_jp.json @@ -55,6 +55,7 @@ "block.jafohana.fireweed": "ヤナギラン", "block.jafohana.alpine_ragwort": "キオン", "block.jafohana.tatarian_aster": "シオン", + "block.jafohana.butterfly_weed": "ヤナギトウワタ", "block.jafohana.cardinal_flower": "ベニバナサワギキョウ", "block.jafohana.yellowflag_iris": "キショウブ", "block.jafohana.princes_plume": "スタンレヤ", diff --git a/src/main/resources/assets/jafohana/models/block/butterfly_weed_bottom.json b/src/main/resources/assets/jafohana/models/block/butterfly_weed_bottom.json new file mode 100644 index 0000000..138439b --- /dev/null +++ b/src/main/resources/assets/jafohana/models/block/butterfly_weed_bottom.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cross", + "render_type": "cutout", + "textures": { + "cross": "jafohana:block/butterfly_weed_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/jafohana/models/block/butterfly_weed_top.json b/src/main/resources/assets/jafohana/models/block/butterfly_weed_top.json new file mode 100644 index 0000000..613c2c6 --- /dev/null +++ b/src/main/resources/assets/jafohana/models/block/butterfly_weed_top.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cross", + "render_type": "cutout", + "textures": { + "cross": "jafohana:block/butterfly_weed_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/jafohana/models/item/butterfly_weed.json b/src/main/resources/assets/jafohana/models/item/butterfly_weed.json new file mode 100644 index 0000000..5304ab8 --- /dev/null +++ b/src/main/resources/assets/jafohana/models/item/butterfly_weed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "jafohana:block/butterfly_weed_top" + } +} \ No newline at end of file diff --git a/src/main/resources/data/jafohana/loot_table/blocks/butterfly_weed.json b/src/main/resources/data/jafohana/loot_table/blocks/butterfly_weed.json new file mode 100644 index 0000000..5975c50 --- /dev/null +++ b/src/main/resources/data/jafohana/loot_table/blocks/butterfly_weed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "jafohana:butterfly_weed", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "jafohana:butterfly_weed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "jafohana:blocks/butterfly_weed" +} \ No newline at end of file diff --git a/src/main/resources/data/jafohana/neoforge/biome_modifier/butterfly_weed_features.json b/src/main/resources/data/jafohana/neoforge/biome_modifier/butterfly_weed_features.json new file mode 100644 index 0000000..0fc5cf2 --- /dev/null +++ b/src/main/resources/data/jafohana/neoforge/biome_modifier/butterfly_weed_features.json @@ -0,0 +1,42 @@ +{ + "type": "neoforge:add_features", + "biomes": { + "type": "neoforge:and", + "values": [ + "#jafohana:is_overworld", + { + "type": "neoforge:or", + "values": [ + "#jafohana:is_forest", + "#jafohana:is_coniferous" + ] + }, + { + "type": "neoforge:or", + "values": [ + "#jafohana:is_sparse_vegetation", + "#jafohana:is_aquatic", + "#c:is_floral" + ] + }, + { + "type": "neoforge:not", + "value": { + "type": "neoforge:or", + "values": [ + "minecraft:flower_forest", + "#jafohana:is_hot", + "#jafohana:is_snowy", + "#jafohana:is_old_growth", + "#jafohana:is_jungle", + "#jafohana:is_hill_or_mountain", + "#jafohana:is_dead_or_wasteland", + "#jafohana:biomesoplenty/tundra" + ] + } + } + ] + }, + "features": "jafohana:butterfly_weed", + "step": "vegetal_decoration" +} \ No newline at end of file diff --git a/src/main/resources/data/jafohana/recipe/actuallyadditions/crushing/orange_dye_from_tall_flower.json b/src/main/resources/data/jafohana/recipe/actuallyadditions/crushing/orange_dye_from_tall_flower.json index 292c025..ca8f023 100644 --- a/src/main/resources/data/jafohana/recipe/actuallyadditions/crushing/orange_dye_from_tall_flower.json +++ b/src/main/resources/data/jafohana/recipe/actuallyadditions/crushing/orange_dye_from_tall_flower.json @@ -17,6 +17,9 @@ }, { "item": "jafohana:bird_of_paradise" + }, + { + "item": "jafohana:butterfly_weed" } ] }, diff --git a/src/main/resources/data/jafohana/recipe/ars_nouveau/crush/orange_dye_from_tall_flower.json b/src/main/resources/data/jafohana/recipe/ars_nouveau/crush/orange_dye_from_tall_flower.json index 0bb57c9..00f884a 100644 --- a/src/main/resources/data/jafohana/recipe/ars_nouveau/crush/orange_dye_from_tall_flower.json +++ b/src/main/resources/data/jafohana/recipe/ars_nouveau/crush/orange_dye_from_tall_flower.json @@ -17,6 +17,9 @@ }, { "item": "jafohana:bird_of_paradise" + }, + { + "item": "jafohana:butterfly_weed" } ] }, diff --git a/src/main/resources/data/jafohana/recipe/enderio/sag_milling/orange_dye_from_tall_flower.json b/src/main/resources/data/jafohana/recipe/enderio/sag_milling/orange_dye_from_tall_flower.json index 2bb373c..5524a7b 100644 --- a/src/main/resources/data/jafohana/recipe/enderio/sag_milling/orange_dye_from_tall_flower.json +++ b/src/main/resources/data/jafohana/recipe/enderio/sag_milling/orange_dye_from_tall_flower.json @@ -27,6 +27,9 @@ }, { "item": "jafohana:bird_of_paradise" + }, + { + "item": "jafohana:butterfly_weed" } ] }, diff --git a/src/main/resources/data/jafohana/recipe/extradelight/mortar/orange_dye_from_tall_flower.json b/src/main/resources/data/jafohana/recipe/extradelight/mortar/orange_dye_from_tall_flower.json index f2e9c42..ca5c48b 100644 --- a/src/main/resources/data/jafohana/recipe/extradelight/mortar/orange_dye_from_tall_flower.json +++ b/src/main/resources/data/jafohana/recipe/extradelight/mortar/orange_dye_from_tall_flower.json @@ -19,6 +19,9 @@ }, { "item": "jafohana:bird_of_paradise" + }, + { + "item": "jafohana:butterfly_weed" } ] }, diff --git a/src/main/resources/data/jafohana/recipe/immersiveengineering/cloche/butterfly_weed.json b/src/main/resources/data/jafohana/recipe/immersiveengineering/cloche/butterfly_weed.json new file mode 100644 index 0000000..1d8108a --- /dev/null +++ b/src/main/resources/data/jafohana/recipe/immersiveengineering/cloche/butterfly_weed.json @@ -0,0 +1,25 @@ +{ + "neoforge:conditions": [ + { + "type": "neoforge:mod_loaded", + "modid": "immersiveengineering" + } + ], + "type": "immersiveengineering:cloche", + "input": { + "item": "jafohana:butterfly_weed" + }, + "render": { + "type": "immersiveengineering:doubleflower", + "block": "jafohana:butterfly_weed" + }, + "results": [ + { + "item": "jafohana:butterfly_weed" + } + ], + "soil": { + "item": "minecraft:dirt" + }, + "time": 480 +} \ No newline at end of file diff --git a/src/main/resources/data/jafohana/recipe/integrateddynamics/mechanical_squeezer/butterfly_weed.json b/src/main/resources/data/jafohana/recipe/integrateddynamics/mechanical_squeezer/butterfly_weed.json new file mode 100644 index 0000000..bb1ea78 --- /dev/null +++ b/src/main/resources/data/jafohana/recipe/integrateddynamics/mechanical_squeezer/butterfly_weed.json @@ -0,0 +1,35 @@ +{ + "neoforge:conditions": [ + { + "type": "neoforge:mod_loaded", + "modid": "integrateddynamics" + } + ], + "type": "integrateddynamics:mechanical_squeezer", + "duration": 5, + "input_item": { + "item": "jafohana:butterfly_weed" + }, + "output_items": [ + { + "item": { + "count": 8, + "id": "minecraft:orange_dye" + } + }, + { + "chance": 0.5, + "item": { + "count": 2, + "id": "minecraft:orange_dye" + } + }, + { + "chance": 0.5, + "item": { + "count": 2, + "id": "minecraft:orange_dye" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/jafohana/recipe/integrateddynamics/squeezer/butterfly_weed.json b/src/main/resources/data/jafohana/recipe/integrateddynamics/squeezer/butterfly_weed.json new file mode 100644 index 0000000..012b7a1 --- /dev/null +++ b/src/main/resources/data/jafohana/recipe/integrateddynamics/squeezer/butterfly_weed.json @@ -0,0 +1,20 @@ +{ + "neoforge:conditions": [ + { + "type": "neoforge:mod_loaded", + "modid": "integrateddynamics" + } + ], + "type": "integrateddynamics:squeezer", + "input_item": { + "item": "jafohana:butterfly_weed" + }, + "output_items": [ + { + "item": { + "count": 8, + "id": "minecraft:orange_dye" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/jafohana/recipe/mekanism/enriching/dye/large_orange.json b/src/main/resources/data/jafohana/recipe/mekanism/enriching/dye/large_orange.json index f54c42f..457d2dd 100644 --- a/src/main/resources/data/jafohana/recipe/mekanism/enriching/dye/large_orange.json +++ b/src/main/resources/data/jafohana/recipe/mekanism/enriching/dye/large_orange.json @@ -17,6 +17,9 @@ }, { "item": "jafohana:bird_of_paradise" + }, + { + "item": "jafohana:butterfly_weed" } ], "count": 1 diff --git a/src/main/resources/data/jafohana/recipe/mekanism/pigment_extracting/flower/large_orange.json b/src/main/resources/data/jafohana/recipe/mekanism/pigment_extracting/flower/large_orange.json index b9f3ca6..84e8cd3 100644 --- a/src/main/resources/data/jafohana/recipe/mekanism/pigment_extracting/flower/large_orange.json +++ b/src/main/resources/data/jafohana/recipe/mekanism/pigment_extracting/flower/large_orange.json @@ -17,6 +17,9 @@ }, { "item": "jafohana:bird_of_paradise" + }, + { + "item": "jafohana:butterfly_weed" } ], "count": 1 diff --git a/src/main/resources/data/jafohana/recipe/orange_dye_from_butterfly_weed.json b/src/main/resources/data/jafohana/recipe/orange_dye_from_butterfly_weed.json new file mode 100644 index 0000000..cb3258e --- /dev/null +++ b/src/main/resources/data/jafohana/recipe/orange_dye_from_butterfly_weed.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "orange_dye", + "ingredients": [ + { + "item": "jafohana:butterfly_weed" + } + ], + "result": { + "count": 2, + "id": "minecraft:orange_dye" + } +} \ No newline at end of file diff --git a/src/main/resources/data/jafohana/recipe/refurbished_furniture/slicing/orange_dye_from_tall_flower.json b/src/main/resources/data/jafohana/recipe/refurbished_furniture/slicing/orange_dye_from_tall_flower.json index 9dfa05a..4136d5f 100644 --- a/src/main/resources/data/jafohana/recipe/refurbished_furniture/slicing/orange_dye_from_tall_flower.json +++ b/src/main/resources/data/jafohana/recipe/refurbished_furniture/slicing/orange_dye_from_tall_flower.json @@ -17,6 +17,9 @@ }, { "item": "jafohana:bird_of_paradise" + }, + { + "item": "jafohana:butterfly_weed" } ] }, diff --git a/src/main/resources/data/jafohana/tags/block/tall_flowers.json b/src/main/resources/data/jafohana/tags/block/tall_flowers.json index 75b0aff..476e4c3 100644 --- a/src/main/resources/data/jafohana/tags/block/tall_flowers.json +++ b/src/main/resources/data/jafohana/tags/block/tall_flowers.json @@ -13,6 +13,7 @@ "jafohana:fireweed", "jafohana:alpine_ragwort", "jafohana:tatarian_aster", + "jafohana:butterfly_weed", "jafohana:cardinal_flower", "jafohana:yellowflag_iris", "jafohana:princes_plume", diff --git a/src/main/resources/data/jafohana/tags/item/tall_flowers.json b/src/main/resources/data/jafohana/tags/item/tall_flowers.json index 75b0aff..476e4c3 100644 --- a/src/main/resources/data/jafohana/tags/item/tall_flowers.json +++ b/src/main/resources/data/jafohana/tags/item/tall_flowers.json @@ -13,6 +13,7 @@ "jafohana:fireweed", "jafohana:alpine_ragwort", "jafohana:tatarian_aster", + "jafohana:butterfly_weed", "jafohana:cardinal_flower", "jafohana:yellowflag_iris", "jafohana:princes_plume", diff --git a/src/main/resources/data/jafohana/worldgen/configured_feature/butterfly_weed.json b/src/main/resources/data/jafohana/worldgen/configured_feature/butterfly_weed.json new file mode 100644 index 0000000..e066174 --- /dev/null +++ b/src/main/resources/data/jafohana/worldgen/configured_feature/butterfly_weed.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "jafohana:butterfly_weed", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + } + ] + }, + "tries": 96, + "xz_spread": 7, + "y_spread": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_flower_forest.json b/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_flower_forest.json index 1be8c9f..aff9b8b 100644 --- a/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_flower_forest.json +++ b/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_flower_forest.json @@ -289,6 +289,42 @@ } }, "placement": [] + }, + { + "feature": { + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "jafohana:butterfly_weed", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + } + ] + }, + "tries": 96, + "xz_spread": 7, + "y_spread": 3 + } + }, + "placement": [] } ] } diff --git a/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_plain.json b/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_plain.json index e65b548..759fee1 100644 --- a/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_plain.json +++ b/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_plain.json @@ -38,6 +38,42 @@ }, "placement": [] }, + { + "feature": { + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "jafohana:butterfly_weed", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + } + ] + }, + "tries": 64, + "xz_spread": 6, + "y_spread": 2 + } + }, + "placement": [] + }, { "feature": { "type": "minecraft:random_patch", diff --git a/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_river.json b/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_river.json index a060925..b177658 100644 --- a/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_river.json +++ b/src/main/resources/data/jafohana/worldgen/configured_feature/tall_flower_river.json @@ -73,6 +73,42 @@ } }, "placement": [] + }, + { + "feature": { + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "jafohana:butterfly_weed", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + } + ] + }, + "tries": 64, + "xz_spread": 7, + "y_spread": 3 + } + }, + "placement": [] } ] } diff --git a/src/main/resources/data/jafohana/worldgen/placed_feature/butterfly_weed.json b/src/main/resources/data/jafohana/worldgen/placed_feature/butterfly_weed.json new file mode 100644 index 0000000..5f1fc27 --- /dev/null +++ b/src/main/resources/data/jafohana/worldgen/placed_feature/butterfly_weed.json @@ -0,0 +1,19 @@ +{ + "feature": "jafohana:butterfly_weed", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 100 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_flower_forest.json b/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_flower_forest.json index 82f91c3..50e614a 100644 --- a/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_flower_forest.json +++ b/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_flower_forest.json @@ -3,7 +3,7 @@ "placement": [ { "type": "minecraft:rarity_filter", - "chance": 16 + "chance": 14 }, { "type": "minecraft:in_square" diff --git a/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_plain.json b/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_plain.json index 24e7772..ac671c1 100644 --- a/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_plain.json +++ b/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_plain.json @@ -3,7 +3,7 @@ "placement": [ { "type": "minecraft:rarity_filter", - "chance": 80 + "chance": 56 }, { "type": "minecraft:in_square" diff --git a/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_river.json b/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_river.json index e579d2c..e7170cd 100644 --- a/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_river.json +++ b/src/main/resources/data/jafohana/worldgen/placed_feature/tall_flower_river.json @@ -3,7 +3,7 @@ "placement": [ { "type": "minecraft:rarity_filter", - "chance": 32 + "chance": 24 }, { "type": "minecraft:in_square"