This commit is contained in:
Pyritie 2025-07-24 23:20:16 +01:00
commit fb53d1de86
7 changed files with 165 additions and 1 deletions

View file

@ -0,0 +1,44 @@
{
"type": "minecraft:block",
"pools": [
{
"name": "loot_pool",
"rolls": 1,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"name": "gtceu:red_granite",
"conditions": [
{
"condition": "tfc:is_isolated"
}
]
},
{
"type": "minecraft:item",
"name": "tfg:loose/red_granite",
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 1,
"max": 4,
"type": "minecraft:uniform"
}
}
]
}
]
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"name": "loot_pool",
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "tfg:grass/mars_dirt"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"name": "loot_pool",
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "tfg:grass/mars_dirt"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"name": "loot_pool",
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "tfg:grass/mars_dirt"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"name": "loot_pool",
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "tfg:grass/mars_dirt"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -0,0 +1,30 @@
{
"type": "minecraft:block",
"pools": [
{
"name": "loot_pool",
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "tfg:loose/red_granite",
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 1,
"max": 4,
"type": "minecraft:uniform"
}
}
]
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -68,8 +68,18 @@ global.MOON_BIOMES = [
]
global.MARS_BIOMES = [
'tfg:mars/martian_plains',
'tfg:mars/martian_oasis',
'tfg:mars/martian_deep_desert',
'tfg:mars/martian_dunes',
'tfg:mars/martian_dune_edge',
'tfg:mars/martian_river',
'tfg:mars/martian_riverbed',
'tfg:mars/amber_plains',
'tfg:mars/amber_hills',
'tfg:mars/rusticus_plains',
'tfg:mars/rusticus_hills',
'tfg:mars/sangnum_plains',
'tfg:mars/sangnum_hills',
'tfg:mars/martian_mountains'
]