Added a couple recipes to egh (#2944)

* added a couple recipes to EGH

Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com>

* some tag stuff to get it working lol

Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com>

---------

Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com>
This commit is contained in:
thederpysockdude123 2026-02-01 15:40:16 -08:00 committed by GitHub
parent ecba52b775
commit 92e1c653a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 3 deletions

View file

@ -465,7 +465,7 @@ const registerTFGGreenhouseRecipes = (event) => {
//#region Recipes
// Mushrooms
Ingredient.of('#beneath:mushrooms').stacks.forEach(element => {
Ingredient.of('#tfg:plants/beneath').stacks.forEach(element => {
generateGreenHouseRecipe(event, 'minecraft:the_nether', `8x ${element.id}`, [element.withCount(24), element.withCount(8)], 1);
});
@ -501,6 +501,10 @@ const registerTFGGreenhouseRecipes = (event) => {
});
generateGreenHouseRecipe(event, null, '8x minecraft:bamboo', ['64x minecraft:bamboo', '8x minecraft:bamboo'], 1);
generateGreenHouseRecipe(event, null, '8x tfc:food/fresh_seaweed', ['24x tfc:food/fresh_seaweed', '8x tfc:food/fresh_seaweed'], 1);
generateGreenHouseRecipe(event, 'minecraft:the_nether', '4x minecraft:glow_berries', ['20x minecraft:glow_berries', '4x minecraft:glow_berries'], 1);
// Mars Wood
generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/strophar', [
@ -547,4 +551,4 @@ const registerTFGGreenhouseRecipes = (event) => {
});
//#endregion
};
};

View file

@ -15,6 +15,10 @@ function registerTFGBeneathItemTags(event) {
event.add('tfc:plants', 'minecraft:spore_blossom')
event.remove('createaddition:plants', 'minecraft:moss_carpet')
event.add('tfg:plants/beneath', 'beneath:gleamflower')
event.add('tfg:plants/beneath', 'beneath:burpflower')
event.add('tfg:plants/beneath', '#beneath:mushrooms')
event.add('tfc:compost_greens', 'minecraft:red_mushroom_block')
event.add('tfc:compost_greens', 'minecraft:brown_mushroom_block')
event.add('tfc:compost_greens', 'minecraft:mushroom_stem')
@ -27,6 +31,9 @@ function registerTFGBeneathItemTags(event) {
function registerTFGBeneathBlockTags(event) {
event.add('tfg:lush_ground_replaceable', 'minecraft:deepslate')
event.add('tfg:lush_ground_replaceable', 'minecraft:blackstone')
event.remove('tfc:plants', 'beneath:gleamflower')
event.remove('tfc:plants', 'beneath:burpflower')
event.add('minecraft:lush_ground_replaceable', 'minecraft:blackstone')
event.add('beneath:nether_bush_plantable_on', 'minecraft:blackstone')
@ -136,4 +143,4 @@ function registerTFGBeneathPlacedFeatures(event) {
event.add('tfg:nether_underground_decoration', 'minecraft:spring_open')
event.add('tfg:nether_underground_decoration', 'minecraft:spring_closed')
event.add('tfg:nether_underground_decoration', 'tfg:nether/terrain/magma_blob')
}
}