diff --git a/src/main/resources/data/mycologymod/forge/biome_modifier/fire_camps_biome_modifier.json b/src/main/resources/data/mycologymod/forge/biome_modifier/fire_camps_biome_modifier.json new file mode 100644 index 00000000..5a43a290 --- /dev/null +++ b/src/main/resources/data/mycologymod/forge/biome_modifier/fire_camps_biome_modifier.json @@ -0,0 +1,8 @@ +{ + "type": "forge:add_features", + "biomes": { + "type": "forge:any" + }, + "features": "mycologymod:fire_camps", + "step": "surface_structures" +} \ No newline at end of file diff --git a/src/main/resources/data/mycologymod/worldgen/configured_feature/fire_camps.json b/src/main/resources/data/mycologymod/worldgen/configured_feature/fire_camps.json new file mode 100644 index 00000000..1de914f7 --- /dev/null +++ b/src/main/resources/data/mycologymod/worldgen/configured_feature/fire_camps.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:campfire", + "Properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/mycologymod/worldgen/placed_feature/fire_camps.json b/src/main/resources/data/mycologymod/worldgen/placed_feature/fire_camps.json new file mode 100644 index 00000000..ee2ae744 --- /dev/null +++ b/src/main/resources/data/mycologymod/worldgen/placed_feature/fire_camps.json @@ -0,0 +1,20 @@ +{ + "feature": "mycologymod:fire_camps", + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:rarity_filter", + "chance": 5 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + } + ] +} \ No newline at end of file