mars craters

This commit is contained in:
Pyritie 2025-09-20 18:32:12 +01:00
parent 6f741648c6
commit ee1302e5e0
18 changed files with 76 additions and 15 deletions

View file

@ -19,7 +19,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/clay_disc",
"tfg:mars/terrain/peat_disc",

View file

@ -22,7 +22,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/clay_disc",
"tfg:mars/terrain/kaolin_clay_disc",

View file

@ -22,7 +22,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/clay_disc",
"tfg:mars/terrain/peat_disc",

View file

@ -21,7 +21,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/spice_disc",
"tfg:mars/terrain/red_quicksand"

View file

@ -21,7 +21,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
],

View file

@ -21,7 +21,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/red_quicksand"
],

View file

@ -22,7 +22,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/venus_sand_disc",
"tfg:mars/terrain/basalt_delta",

View file

@ -22,7 +22,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
],

View file

@ -19,7 +19,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/clay_disc",
"tfg:mars/terrain/peat_disc",

View file

@ -22,7 +22,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/clay_disc",
"tfg:mars/terrain/kaolin_clay_disc",

View file

@ -22,7 +22,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/clay_disc",
"tfg:mars/terrain/peat_disc",

View file

@ -19,7 +19,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/clay_disc",
"tfg:mars/terrain/peat_disc",

View file

@ -22,7 +22,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/clay_disc",
"tfg:mars/terrain/kaolin_clay_disc",

View file

@ -22,7 +22,7 @@
[
"tfc:erosion"
],
[],
"#tfg:mars_craters",
[
"tfg:mars/terrain/clay_disc",
"tfg:mars/terrain/peat_disc",

View file

@ -0,0 +1,18 @@
{
"feature": "tfg:moon/crater/extra_large",
"placement": [
{
"type": "minecraft:rarity_filter",
"chance": 150
},
{
"type": "minecraft:heightmap",
"heightmap": "MOTION_BLOCKING"
},
{
"type": "minecraft:random_offset",
"xz_spread": 0,
"y_spread": 10
}
]
}

View file

@ -0,0 +1,18 @@
{
"feature": "tfg:moon/crater/large",
"placement": [
{
"type": "minecraft:rarity_filter",
"chance": 130
},
{
"type": "minecraft:heightmap",
"heightmap": "MOTION_BLOCKING"
},
{
"type": "minecraft:random_offset",
"xz_spread": 0,
"y_spread": 6
}
]
}

View file

@ -0,0 +1,18 @@
{
"feature": "tfg:moon/crater/medium",
"placement": [
{
"type": "minecraft:rarity_filter",
"chance": 110
},
{
"type": "minecraft:heightmap",
"heightmap": "MOTION_BLOCKING"
},
{
"type": "minecraft:random_offset",
"xz_spread": 0,
"y_spread": 5
}
]
}

View file

@ -468,7 +468,7 @@ const registerAdAstraEntityTypeTags = (event) => {
const registerAdAstraPlacedFeatures = (event) => {
// Moon
//#region Moon
event.add('tfg:moon_craters', 'tfg:moon/crater/extra_large')
event.add('tfg:moon_craters', 'tfg:moon/crater/large')
event.add('tfg:moon_craters', 'tfg:moon/crater/medium')
@ -486,8 +486,15 @@ const registerAdAstraPlacedFeatures = (event) => {
event.add('tfg:moon_small_rock_features', 'tfg:moon/surface/pile_white_sand')
event.add('tfg:moon_small_rock_features', 'tfg:moon/surface/pile_black_sand')
//#endregion
//#region Mars
// Craters
event.add('tfg:mars_craters', 'tfg:mars/terrain/crater_extra_large')
event.add('tfg:mars_craters', 'tfg:mars/terrain/crater_large')
event.add('tfg:mars_craters', 'tfg:mars/terrain/crater_medium')
// Underground decoration
event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/ice_cave')