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

@ -42,7 +42,10 @@
[],
"#tfg:mars_veins",
[
"tfg:mars/terrain/venus_sand_disc"
"tfg:mars/terrain/venus_sand_disc",
"tfg:mars/terrain/basalt_delta",
"tfg:mars/terrain/gabbro_delta",
"tfg:mars/terrain/red_granite_delta"
],
[
"tfc:raw_boulder",

View file

@ -0,0 +1,25 @@
{
"type": "minecraft:delta_feature",
"config": {
"contents": {
"Name": "tfc:rock/cobble/basalt_slab"
},
"rim": {
"Name": "tfc:rock/hardened/basalt"
},
"rim_size": {
"type": "minecraft:uniform",
"value": {
"max_inclusive": 3,
"min_inclusive": 1
}
},
"size": {
"type": "minecraft:uniform",
"value": {
"max_inclusive": 7,
"min_inclusive": 3
}
}
}
}

View file

@ -0,0 +1,25 @@
{
"type": "minecraft:delta_feature",
"config": {
"contents": {
"Name": "tfc:rock/cobble/gabbro_slab"
},
"rim": {
"Name": "tfc:rock/hardened/gabbro"
},
"rim_size": {
"type": "minecraft:uniform",
"value": {
"max_inclusive": 3,
"min_inclusive": 1
}
},
"size": {
"type": "minecraft:uniform",
"value": {
"max_inclusive": 7,
"min_inclusive": 3
}
}
}
}

View file

@ -30,6 +30,15 @@
"predicate_type": "minecraft:tag_match",
"tag": "tfc:dirt"
}
},
{
"state": {
"Name": "create:ochrum"
},
"target": {
"predicate_type": "minecraft:block_match",
"block": "ad_astra:venus_sand"
}
}
]
}

View file

@ -0,0 +1,25 @@
{
"type": "minecraft:delta_feature",
"config": {
"contents": {
"Name": "gtceu:red_granite_cobblestone"
},
"rim": {
"Name": "tfg:rock/hardened_red_granite"
},
"rim_size": {
"type": "minecraft:uniform",
"value": {
"max_inclusive": 3,
"min_inclusive": 1
}
},
"size": {
"type": "minecraft:uniform",
"value": {
"max_inclusive": 7,
"min_inclusive": 3
}
}
}
}

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"
]
}
}
]
}