Skip to content

Commit

Permalink
祭坛在其他地方的生成
Browse files Browse the repository at this point in the history
  • Loading branch information
MagicHarp committed Oct 9, 2024
1 parent f764ad3 commit 2583005
Show file tree
Hide file tree
Showing 9 changed files with 151 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "forge:add_features",
"biomes": "#minecraft:is_overworld",
"features": "confluence:crimson_altar_world",
"step": "vegetal_decoration"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "forge:add_features",
"biomes": "#minecraft:is_overworld",
"features": "confluence:demon_altar_world",
"step": "vegetal_decoration"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"type": "confluence:sky_mill",
"result": {
"item": "confluence:disc_block",
"count": 4
},
"ingredients": [
{
"item": "confluence:sun_plate",
"count": 1
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"type": "minecraft:simple_block",
"config": {
"to_place": {
"type": "simple_state_provider",
"state": {
"Name": "confluence:crimson_altar"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"type": "minecraft:simple_block",
"config": {
"to_place": {
"type": "simple_state_provider",
"state": {
"Name": "confluence:demon_altar"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"type": "minecraft:surface_relative_threshold_filter",
"heightmap": "OCEAN_FLOOR",
"min_inclusive": -110,
"max_inclusive": -40
"max_inclusive": -20
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"feature": "confluence:crimson_altar_world",
"placement": [
{
"type": "minecraft:count",
"count": 2
},
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:biome"
},
{
"type": "minecraft:height_range",
"height": {
"type": "minecraft:uniform",
"max_inclusive": {
"absolute": 256
},
"min_inclusive": {
"above_bottom": 0
}
}
},
{
"type": "minecraft:environment_scan",
"allowed_search_condition": {
"type": "minecraft:matching_blocks",
"blocks": "minecraft:air"
},
"direction_of_search": "down",
"max_steps": 12,
"target_condition": {
"type": "minecraft:has_sturdy_face",
"offset": [
0,
-1,
0
],
"direction": "up"
}
},
{
"type": "minecraft:surface_relative_threshold_filter",
"heightmap": "OCEAN_FLOOR",
"min_inclusive": -110,
"max_inclusive": -20
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"type": "minecraft:surface_relative_threshold_filter",
"heightmap": "OCEAN_FLOOR",
"min_inclusive": -110,
"max_inclusive": -40
"max_inclusive": -20
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"feature": "confluence:demon_altar_world",
"placement": [
{
"type": "minecraft:count",
"count": 2
},
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:biome"
},
{
"type": "minecraft:height_range",
"height": {
"type": "minecraft:uniform",
"max_inclusive": {
"absolute": 256
},
"min_inclusive": {
"above_bottom": 0
}
}
},
{
"type": "minecraft:environment_scan",
"allowed_search_condition": {
"type": "minecraft:matching_blocks",
"blocks": "minecraft:air"
},
"direction_of_search": "down",
"max_steps": 12,
"target_condition": {
"type": "minecraft:has_sturdy_face",
"offset": [
0,
-1,
0
],
"direction": "up"
}
},
{
"type": "minecraft:surface_relative_threshold_filter",
"heightmap": "OCEAN_FLOOR",
"min_inclusive": -110,
"max_inclusive": -20
}
]
}

0 comments on commit 2583005

Please sign in to comment.