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

View file

@ -3,8 +3,13 @@
## Unreleased
### Changes
- Doubled the durability of all space suits @Pyritie
- Added "too cold to handle" and "too light to handle" for cold things and lighter-than-air things. Uses the same mechanic as tongs. Lighter-than-air things can also be negated with diving suit boots or carrying something Very Heavy in your inventory, and all effects (including "too hot to handle") are negated by super tanks/chests, cells, and space suits, but *not* drums or buckets. @Pyritie
- Added debuff effects for all medical conditions, so you're immediately notified when carrying something hazardous instead of wondering why you have Hunger II. @Pyritie
- The hazard effect that previously instantly killed you (which did not spawn a corpse) now gives you Wither III instead. @Pyritie
### Bug fixes
- Fixed aged sake, vodka, and whiskey losing their buff effects, but for real this time @Pyritie
- Fixed fries and cheese curds not being able to be put on burgers. @Redeix
- Fixed sliced brinza missing the proper cheese tags. @Redeix
### Translation updates
## [0.11.10] - 9-12-2025

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')