added those cobble slab deltas to mars

This commit is contained in:
Pyritie 2025-09-02 02:19:10 +01:00
parent f54777f7e0
commit 85bb5ffa1d
9 changed files with 172 additions and 2 deletions

View file

@ -3,7 +3,7 @@
"placement": [
{
"type": "minecraft:count",
"count": 1
"count": 2
},
{
"type": "minecraft:in_square"

View file

@ -0,0 +1,28 @@
{
"feature": "tfg:mars/terrain/basalt_delta",
"placement": [
{
"type": "minecraft:count",
"count": 25
},
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:heightmap",
"heightmap": "WORLD_SURFACE"
},
{
"type": "minecraft:block_predicate_filter",
"predicate": {
"type": "minecraft:matching_blocks",
"offset": [ 0, -1, 0 ],
"blocks": [
"tfc:rock/raw/basalt",
"tfc:rock/hardened/basalt",
"tfc:rock/gravel/basalt"
]
}
}
]
}

View file

@ -0,0 +1,28 @@
{
"feature": "tfg:mars/terrain/gabbro_delta",
"placement": [
{
"type": "minecraft:count",
"count": 25
},
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:heightmap",
"heightmap": "WORLD_SURFACE"
},
{
"type": "minecraft:block_predicate_filter",
"predicate": {
"type": "minecraft:matching_blocks",
"offset": [ 0, -1, 0 ],
"blocks": [
"tfc:rock/raw/gabbro",
"tfc:rock/hardened/gabbro",
"tfc:rock/gravel/gabbro"
]
}
}
]
}

View file

@ -0,0 +1,27 @@
{
"feature": "tfg:mars/terrain/red_granite_delta",
"placement": [
{
"type": "minecraft:count",
"count": 25
},
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:heightmap",
"heightmap": "WORLD_SURFACE"
},
{
"type": "minecraft:block_predicate_filter",
"predicate": {
"type": "minecraft:matching_blocks",
"offset": [ 0, -1, 0 ],
"blocks": [
"gtceu:red_granite",
"tfg:rock/hardened_red_granite"
]
}
}
]
}