added oil spout features

This commit is contained in:
Pyritie 2025-11-30 14:04:33 +00:00
parent ed6365bc3c
commit 67f24dc797
4 changed files with 38 additions and 1 deletions

View file

@ -2859,6 +2859,7 @@
{
dependencies: ["15277C12EEB517E1"]
description: ["{quests.tfg_tips.tools_tips.concrete_roads.desc}"]
disable_toast: true
guide_page: "tfc:field_guide tfc:roadsandroofs/concrete_roads 0"
id: "191DB28DC6FF4538"
subtitle: "{quests.tfg_tips.tools_tips.concrete_roads.subtitle}"
@ -2874,6 +2875,7 @@
{
dependencies: ["15277C12EEB517E1"]
description: ["{quests.tfg_tips.tools_tips.brick_roads.desc}"]
disable_toast: true
guide_page: "tfc:field_guide tfc:roadsandroofs/stone_roads 0"
id: "345EB58B7064BF4A"
subtitle: "{quests.tfg_tips.tools_tips.brick_roads.subtitle}"
@ -2896,6 +2898,7 @@
{
dependencies: ["15277C12EEB517E1"]
description: ["{quests.tfg_tips.tools_tips.gravel_roads.desc}"]
disable_toast: true
id: "7E46F50FEBEE9003"
subtitle: "{quests.tfg_tips.tools_tips.gravel_roads.subtitle}"
tasks: [{

View file

@ -0,0 +1,33 @@
{
"feature": "gtceu:raw_oil_sprout",
"placement": [
{
"type": "minecraft:rarity_filter",
"chance": 128
},
{
"type": "tfc:climate",
"min_temperature": 0,
"min_rainfall": 0,
"max_rainfall": 100
},
{
"type": "minecraft:in_square"
},
{
"type": "minecraft:biome"
},
{
"type": "minecraft:height_range",
"height": {
"type": "minecraft:uniform",
"max_inclusive": {
"absolute": 40
},
"min_inclusive": {
"absolute": 10
}
}
}
]
}

View file

@ -6,7 +6,7 @@
"type": "tfc:climate",
"min_temperature": 7,
"min_rainfall": 0,
"max_rainfall": 70
"max_rainfall": 100
}
]
}

View file

@ -785,4 +785,5 @@ function registerTFCPlacedFeatures(event) {
// Other decoration
event.add("tfc:in_biome/underground_decoration", "tfg:glow_lichen");
event.add("tfc:in_biome/underground_decoration", "tfg:earth/sulfur_patch");
event.add("tfc:in_biome/underground_decoration", "tfg:earth/oil_spout");
}