From a7eba83d81a4e0a9b2645bdf61caf8e29727ae90 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Thu, 2 Oct 2025 22:48:20 +0100 Subject: [PATCH] add mars liquid ice vein just for variety's sake --- kubejs/server_scripts/gregtech/data.js | 16 ++++++++++++++-- kubejs/server_scripts/tfg/data.js | 1 + 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/kubejs/server_scripts/gregtech/data.js b/kubejs/server_scripts/gregtech/data.js index e01bd8d41..4245617f8 100644 --- a/kubejs/server_scripts/gregtech/data.js +++ b/kubejs/server_scripts/gregtech/data.js @@ -193,7 +193,7 @@ function registerGTCEUBedrockFluidVeins(event) { event.add('tfg:liquid_carbon_dioxide', vein => { vein.dimensions('ad_astra:mars') vein.fluid(() => Fluid.of('gtceu:liquid_carbon_dioxide').fluid) - vein.weight(15) + vein.weight(30) vein.minimumYield(20) vein.maximumYield(350) vein.depletionAmount(1) @@ -201,6 +201,17 @@ function registerGTCEUBedrockFluidVeins(event) { vein.depletedYield(5) }) + event.add('tfg:liquid_ice', vein => { + vein.dimensions('ad_astra:mars') + vein.fluid(() => Fluid.of('gtceu:ice').fluid) + vein.weight(20) + vein.minimumYield(20) + vein.maximumYield(200) + vein.depletionAmount(1) + vein.depletionChance(20) + vein.depletedYield(5) + }) + // Heavy Ammonical Water in Specific Biome Credit to Monifactory from https://github.com/ThePansmith/Monifactory/blob/main/kubejs/server_scripts/worldgen/fluidVeins.js event.add('tfg:heavy_ammoniacal_water', vein => { @@ -208,11 +219,12 @@ function registerGTCEUBedrockFluidVeins(event) { vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) vein.biomes(20, martianAmberHillsResourceKey) vein.biomes(20, martianAmberPlainsResourceKey) - vein.biomes(20, martianMountainsResourceKey) vein.biomes(20, martianRusticusHillsResourceKey) vein.biomes(20, martianRusticusPlainsResourceKey) vein.biomes(20, martianSangnumHillsResourceKey) vein.biomes(20, martianSangnumPlainsResourceKey) + // This one is exclusively far inland, so it's ok to buff it a bit in case the player has bad luck + vein.biomes(50, martianMountainsResourceKey) vein.weight(0) vein.minimumYield(100) vein.maximumYield(650) diff --git a/kubejs/server_scripts/tfg/data.js b/kubejs/server_scripts/tfg/data.js index 6c27034a0..0bbabc1f4 100644 --- a/kubejs/server_scripts/tfg/data.js +++ b/kubejs/server_scripts/tfg/data.js @@ -553,6 +553,7 @@ function registerTFGFoodData(event) { food.saturation(4); food.decayModifier(2); food.water(5); + food.protein(1); food.fruit(4); food.grain(2); });