Add Bags for Universal Composts (#3016)

* Add universal composts

* Update changelog
This commit is contained in:
Nebby 2026-02-09 15:14:24 -03:00 committed by GitHub
parent 3a3d502265
commit c8af187dcb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 93 additions and 0 deletions

View file

@ -338,6 +338,10 @@ function registerTFGItemSize(event) {
"medium",
"Molds"
)
//Universal Compost Bags
event.itemSize("tfg:universal_compost_browns_bag", "tiny", "medium")
event.itemSize("tfg:universal_compost_greens_bag", "tiny", "medium")
}
//#endregion

View file

@ -1,5 +1,9 @@
"use strict";
/**
*
* @param {Internal.RecipesEventJS} event
*/
function registerTFGCompostRecipes(event) {
//#region Fertiliser
event.recipes.gtceu.mixer('tfg:fertilizer')
@ -208,4 +212,26 @@ function registerTFGCompostRecipes(event) {
.itemOutputs(Item.of('tfg:universal_compost_browns', 4))
.duration(20)
.EUt(8)
//Universal Brown Compost Bag
event.shapeless(Item.of('tfg:universal_compost_browns_bag', 1),
[
"4x tfg:universal_compost_browns"
]).id('tfg:shapeless/universal_compost_browns_bag')
event.shapeless(Item.of('tfg:universal_compost_browns', 4),
[
"tfg:universal_compost_browns_bag"
]).id("tfg:shapeless/universal_compost_browns_from_bag")
//Universal Green Compost Bag
event.shapeless(Item.of('tfg:universal_compost_greens_bag', 1),
[
"4x tfg:universal_compost_greens"
]).id('tfg:shapeless/universal_compost_greens_bag')
event.shapeless(Item.of('tfg:universal_compost_greens', 4),
[
"tfg:universal_compost_greens_bag"
]).id("tfg:shapeless/universal_compost_greens_from_bag")
}