Add Bags for Universal Composts (#3016)
* Add universal composts * Update changelog
This commit is contained in:
parent
3a3d502265
commit
c8af187dcb
7 changed files with 93 additions and 0 deletions
BIN
kubejs/assets/tfg/textures/item/universal_compost_browns_bag.png
Normal file
BIN
kubejs/assets/tfg/textures/item/universal_compost_browns_bag.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 483 B |
BIN
kubejs/assets/tfg/textures/item/universal_compost_greens_bag.png
Normal file
BIN
kubejs/assets/tfg/textures/item/universal_compost_greens_bag.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 471 B |
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
}
|
||||
|
|
|
|||
|
|
@ -101,9 +101,20 @@ function registerTFGPrimitiveItems(event) {
|
|||
// Universal compost items
|
||||
event.create('tfg:universal_compost_browns')
|
||||
.tag('tfc:compost_browns_low')
|
||||
.translationKey('item.tfg.universal_compost_browns')
|
||||
|
||||
event.create('tfg:universal_compost_greens')
|
||||
.tag('tfc:compost_greens_low')
|
||||
.translationKey('item.tfg.universal_compost_greens')
|
||||
|
||||
// Universal compost bag items
|
||||
event.create('tfg:universal_compost_browns_bag')
|
||||
.tag('tfc:compost_browns_high')
|
||||
.translationKey('item.tfg.universal_compost_browns_bag')
|
||||
|
||||
event.create('tfg:universal_compost_greens_bag')
|
||||
.tag('tfc:compost_greens_high')
|
||||
.translationKey('item.tfg.universal_compost_greens_bag')
|
||||
|
||||
// Etched Diamond Etching Tip
|
||||
event.create('tfg:etching_diamond_tip')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue