Some more blocks for cooling tower (#1923)

* yes

* yes

* some stuff

* blocks
This commit is contained in:
GameStar 2025-09-28 14:05:55 -05:00 committed by GitHub
parent c856ec9398
commit 933cb23fc5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 129 additions and 4 deletions

View file

@ -623,6 +623,11 @@
"block.tfg.large_nest_box_warped": "Large Warped Nest",
"block.tfg.titanium_concrete": "Titanium-Rebar Concrete",
"block.tfg.polished_titanium_concrete": "Polished Titanium-Rebar Concrete",
"block.tfg.titanium_concrete_tile": "Titanium-Rebar Concrete Tile",
"block.tfg.titanium_concrete_tile_small": "Small Titanium-Rebar Concrete Tile",
"block.tfg.titanium_concrete_bricks": "Titanium-Rebar Concrete Bricks",
"block.tfg.titanium_concrete_bricks_small": "Small Titanium-Rebar Concrete Bricks",
"block.tfg.titanium_concrete_bricks_square": "Square Titanium-Rebar Concrete Bricks",
"block.tfg.nuclear_turbine": "Nuclear Steam Turbine",
"block.tfg.evaporation_tower": "Evaporation Tower",
"fluid.tfg.nether_slurry": "Nether Slurry",

View file

@ -0,0 +1 @@
{"parent":"minecraft:block/cube_all","textures":{"all":"tfg:block/casings/heat_pipe_casing"}}

View file

@ -1,6 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "tfg:block/polished_titanium_concrete"
"all": "tfg:block/concrete/polished_titanium_concrete"
}
}

View file

@ -1,6 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "tfg:block/titanium_concrete"
"all": "tfg:block/concrete/titanium_concrete"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "tfg:block/concrete/titanium_concrete_bricks"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "tfg:block/concrete/titanium_concrete_bricks_small"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "tfg:block/concrete/titanium_concrete_bricks_square"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "tfg:block/concrete/titanium_concrete_tile"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "tfg:block/concrete/titanium_concrete_tile_small"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 821 B

View file

@ -0,0 +1,5 @@
{
"ldlib": {
"connection": "tfg:block/casings/heat_pipe_casing_ctm"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View file

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -1366,11 +1366,42 @@ function registerTFGMiscellaneousRecipes(event) {
.EUt(GTValues.VH[GTValues.LV])
event.recipes.gtceu.assembler('tfg:titanium_concrete')
.itemInputs('2x #forge:rods/titanium')
.itemInputs('2x #forge:rods/titanium', '4x #forge:dusts/kaolinite')
.inputFluids(Fluid.of('gtceu:concrete', 144*1.5))
.itemOutputs('tfg:titanium_concrete')
.circuit(2)
.duration(20)
.EUt(GTValues.VH[GTValues.EV])
event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_bricks')
.itemInputs('tfg:polished_titanium_concrete')
.notConsumable('#forge:lenses/light_blue')
.itemOutputs('tfg:titanium_concrete_bricks')
.duration(20 * (2.5))
.EUt(GTValues.VA[GTValues.LV])
event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_bricks_small')
.itemInputs('tfg:polished_titanium_concrete')
.notConsumable('#forge:lenses/pink')
.itemOutputs('tfg:titanium_concrete_bricks_small')
.duration(20 * (2.5))
.EUt(GTValues.VA[GTValues.LV])
event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_bricks_square')
.itemInputs('tfg:polished_titanium_concrete')
.notConsumable('#forge:lenses/green')
.itemOutputs('tfg:titanium_concrete_bricks_square')
.duration(20 * (2.5))
.EUt(GTValues.VA[GTValues.LV])
event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_tile')
.itemInputs('tfg:polished_titanium_concrete')
.notConsumable('#forge:lenses/red')
.itemOutputs('tfg:titanium_concrete_tile')
.duration(20 * (2.5))
.EUt(GTValues.VA[GTValues.LV])
event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_tile_small')
.itemInputs('tfg:polished_titanium_concrete')
.notConsumable('#forge:lenses/black')
.itemOutputs('tfg:titanium_concrete_tile_small')
.duration(20 * (2.5))
.EUt(GTValues.VA[GTValues.LV])
}

View file

@ -37,6 +37,7 @@ function registerFacadeWhitelistTags(event) {
'#tfg:ad_astra_ostrum_blocks',
'#tfg:ad_astra_calorite_blocks',
'#tfg:ad_astra_etrium_blocks',
'#tfg:titanium_concrete',
//rnr shingles
'rnr:ceramic_roof',

View file

@ -123,6 +123,16 @@ const registerTFGBlocks = (event) => {
.tagBlock('minecraft:mineable/pickaxe')
.tagBlock('minecraft:mineable/wrench')
.mapColor('color_light_gray')
event.create('tfg:casings/heat_pipe_casing')
.translationKey('block.tfg.casings.heat_pipe_casing')
.model('tfg:block/casings/heat_pipe_casing')
.soundType('copper')
.hardness(5)
.resistance(6)
.tagBlock('minecraft:mineable/pickaxe')
.tagBlock('minecraft:mineable/wrench')
.mapColor('color_black')
//#endregion
@ -132,14 +142,56 @@ const registerTFGBlocks = (event) => {
.soundType('stone')
.mapColor('stone')
.tagBlock('minecraft:mineable/pickaxe')
.tagBoth('tfg:titanium_concrete')
event.create('tfg:polished_titanium_concrete')
.translationKey('block.tfg.polidhed_titanium_concrete')
.translationKey('block.tfg.polished_titanium_concrete')
.model('tfg:block/concrete/polished_titanium_concrete')
.soundType('stone')
.mapColor('stone')
.tagBlock('minecraft:mineable/pickaxe')
.tagBoth('tfg:titanium_concrete')
event.create('tfg:titanium_concrete_tile')
.translationKey('block.tfg.titanium_concrete_tile')
.model('tfg:block/concrete/titanium_concrete_tile')
.soundType('stone')
.mapColor('stone')
.tagBlock('minecraft:mineable/pickaxe')
.tagBoth('tfg:titanium_concrete')
event.create('tfg:titanium_concrete_tile_small')
.translationKey('block.tfg.titanium_concrete_tile_small')
.model('tfg:block/concrete/titanium_concrete_tile_small')
.soundType('stone')
.mapColor('stone')
.tagBlock('minecraft:mineable/pickaxe')
.tagBoth('tfg:titanium_concrete')
event.create('tfg:titanium_concrete_bricks')
.translationKey('block.tfg.titanium_concrete_bricks')
.model('tfg:block/concrete/titanium_concrete_bricks')
.soundType('stone')
.mapColor('stone')
.tagBlock('minecraft:mineable/pickaxe')
.tagBoth('tfg:titanium_concrete')
event.create('tfg:titanium_concrete_bricks_small')
.translationKey('block.tfg.titanium_concrete_bricks_small')
.model('tfg:block/concrete/titanium_concrete_bricks_small')
.soundType('stone')
.mapColor('stone')
.tagBlock('minecraft:mineable/pickaxe')
.tagBoth('tfg:titanium_concrete')
event.create('tfg:titanium_concrete_bricks_square')
.translationKey('block.tfg.titanium_concrete_bricks_square')
.model('tfg:block/concrete/titanium_concrete_bricks_square')
.soundType('stone')
.mapColor('stone')
.tagBlock('minecraft:mineable/pickaxe')
.tagBoth('tfg:titanium_concrete')
// #region Decorative vases