stuff for core pr (#1612)

* Add files via upload

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Add files via upload

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Add files via upload

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Add files via upload

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Add files via upload

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Add files via upload

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Add files via upload

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Add files via upload

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Add files via upload

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Update items.food.js

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Update constants.js

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Update data.js

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Update recipes.food.js

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

---------

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>
This commit is contained in:
GameStar 2025-08-12 14:45:38 -05:00 committed by GitHub
parent 60727603a6
commit 9e9b5bfb55
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
29 changed files with 1917 additions and 3 deletions

View file

@ -140,6 +140,32 @@ const registerTFGFoodData = (event) => {
food.decayModifier(2.25)
})
event.foodItem('tfg:food/raw_glacian_mutton', food => {
food.hunger(4)
food.protein(2.0)
food.decayModifier(3)
})
event.foodItem('tfg:food/cooked_glacian_mutton', food => {
food.hunger(6)
food.saturation(3)
food.protein(5)
food.decayModifier(1.5)
})
event.foodItem('tfg:food/raw_sniffer_beef', food => {
food.hunger(4)
food.protein(2.0)
food.decayModifier(3)
})
event.foodItem('tfg:food/cooked_sniffer_beef', food => {
food.hunger(6)
food.saturation(4)
food.protein(7)
food.decayModifier(1.5)
})
// high-tech food
global.FOOD_FRUIT.forEach(fruit => {
@ -512,4 +538,4 @@ const registerTFGFLPlanters = (event) => {
],
null
)
}
}

View file

@ -910,6 +910,12 @@ function registerTFGFoodRecipes(event) {
event.recipes.tfc.heating('betterend:cave_pumpkin_pie_raw', 200)
.resultItem(TFC.isp.of('betterend:cave_pumpkin_pie').copyFood())
event.recipes.tfc.heating('tfg:food/raw_glacian_mutton', 200)
.resultItem(TFC.isp.of('tfg:food/cooked_glacian_mutton').copyFood())
event.recipes.tfc.heating('tfg:food/raw_sniffer_beef', 200)
.resultItem(TFC.isp.of('tfg:food/cooked_sniffer_beef').copyFood())
event.recipes.tfc.advanced_shapeless_crafting(
TFC.itemStackProvider.of('4x betterend:cave_pumpkin_chunks').copyFood(),
[TFC.ingredient.notRotten('betterend:cave_pumpkin'), '#forge:tools/hammers'], 'betterend:cave_pumpkin')