This commit is contained in:
Pyritie 2025-12-10 23:30:00 +00:00
commit 0ec6f5da04
9 changed files with 21 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 586 B

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -175,7 +175,8 @@ function registerTFGFoodItemTags(event) {
const cheeses = [
'#firmalife:foods/cheeses',
'tfg:food/slice_of_cheese',
'firmalife:food/shredded_cheese'
'firmalife:food/shredded_cheese',
'#tfc_gurman:foods/brinza'
];
cheeses.forEach(item => {
event.add('tfg:foods/cheeses', item);

View file

@ -17,5 +17,5 @@ global.COMPUTER_CRAFT_DISCS = [
'{Color:8349260}',
'{Color:5744206}',
'{Color:13388876}',
'{Color:1118481}',
'{Color:1118481}'
]

View file

@ -836,7 +836,7 @@ global.TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS = /** @type {const} */ ([
{ input: "5x minecraft:clay_ball", output: "10x rnr:unfired_roof_tile", name: "roof_tile" },
{ input: "5x minecraft:clay_ball", output: "firmalife:oven_top", name: "oven_top" },
{ input: "5x minecraft:clay_ball", output: "firmalife:oven_chimney", name: "oven_chimney" },
{ input: "5x minecraft:clay_ball", output: "firmalife:oven_bottom", name: "oven_bottom" },
{ input: "5x minecraft:clay_ball", output: "firmalife:oven_bottom", name: "oven_bottom" }
]);
global.TFC_FIRE_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS = /** @type {const} */ ([

View file

@ -116,6 +116,10 @@ function registerTFGCasingBlocks(event) {
.tagBlock('gtceu:mineable/pickaxe_or_wrench')
.mapColor('color_brown')
event.create('tfg:casings/test_casing')
.soundType('copper')
.hardness(5)
.resistance(6)
.tagBoth('c:hidden_from_recipe_viewers')
}

View file

@ -358,7 +358,7 @@ function registerTFGFoodItems(event) {
.texture('tfg:item/food/cooked_beer_battered_cheese_curds')
.food(food => food.hunger(3).saturation(2))
.tag('tfc:foods')
.tag('tfc:foods/usable_in_burgers');
.tag('tfg:foods/usable_in_burgers');
// French Fries
event.create('tfg:food/raw_fries')
@ -372,7 +372,7 @@ function registerTFGFoodItems(event) {
.texture('tfg:item/food/cooked_fries')
.food(food => food.hunger(3).saturation(2))
.tag('tfc:foods')
.tag('tfc:foods/usable_in_burgers');
.tag('tfg:foods/usable_in_burgers');
// Poutine
event.create('tfg:food/poutine')