Skip to content

Commit 8fe763f

Browse files
committed
2 parents e7eaef7 + 92e1c65 commit 8fe763f

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

kubejs/server_scripts/macaws_for_tfc/recipes.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,11 @@ function registerMacawsForTFCRecipes(event) {
2323
C: `tfc:wood/log/${wood}`
2424
}).id(`tfg:shaped/${wood}_wired_fence`)
2525
})
26+
27+
event.remove({input: ['mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab','#tfc:saws']})
28+
29+
event.shapeless('minecraft:gray_terracotta', [
30+
'mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab',
31+
'mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab'
32+
]).id('minecraft:gray_terracotta')
2633
}

kubejs/server_scripts/tfg/aquaponics/recipes.greenhouse.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ const registerTFGGreenhouseRecipes = (event) => {
465465
//#region Recipes
466466

467467
// Mushrooms
468-
Ingredient.of('#beneath:mushrooms').stacks.forEach(element => {
468+
Ingredient.of('#tfg:plants/beneath').stacks.forEach(element => {
469469
generateGreenHouseRecipe(event, 'minecraft:the_nether', `8x ${element.id}`, [element.withCount(24), element.withCount(8)], 1);
470470
});
471471

@@ -501,6 +501,10 @@ const registerTFGGreenhouseRecipes = (event) => {
501501
});
502502

503503
generateGreenHouseRecipe(event, null, '8x minecraft:bamboo', ['64x minecraft:bamboo', '8x minecraft:bamboo'], 1);
504+
505+
generateGreenHouseRecipe(event, null, '8x tfc:food/fresh_seaweed', ['24x tfc:food/fresh_seaweed', '8x tfc:food/fresh_seaweed'], 1);
506+
507+
generateGreenHouseRecipe(event, 'minecraft:the_nether', '4x minecraft:glow_berries', ['20x minecraft:glow_berries', '4x minecraft:glow_berries'], 1);
504508

505509
// Mars Wood
506510
generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/strophar', [
@@ -547,4 +551,4 @@ const registerTFGGreenhouseRecipes = (event) => {
547551
});
548552

549553
//#endregion
550-
};
554+
};

kubejs/server_scripts/tfg/beneath/tags.beneath.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ function registerTFGBeneathItemTags(event) {
1515
event.add('tfc:plants', 'minecraft:spore_blossom')
1616
event.remove('createaddition:plants', 'minecraft:moss_carpet')
1717

18+
event.add('tfg:plants/beneath', 'beneath:gleamflower')
19+
event.add('tfg:plants/beneath', 'beneath:burpflower')
20+
event.add('tfg:plants/beneath', '#beneath:mushrooms')
21+
1822
event.add('tfc:compost_greens', 'minecraft:red_mushroom_block')
1923
event.add('tfc:compost_greens', 'minecraft:brown_mushroom_block')
2024
event.add('tfc:compost_greens', 'minecraft:mushroom_stem')
@@ -27,6 +31,9 @@ function registerTFGBeneathItemTags(event) {
2731
function registerTFGBeneathBlockTags(event) {
2832
event.add('tfg:lush_ground_replaceable', 'minecraft:deepslate')
2933
event.add('tfg:lush_ground_replaceable', 'minecraft:blackstone')
34+
35+
event.remove('tfc:plants', 'beneath:gleamflower')
36+
event.remove('tfc:plants', 'beneath:burpflower')
3037

3138
event.add('minecraft:lush_ground_replaceable', 'minecraft:blackstone')
3239
event.add('beneath:nether_bush_plantable_on', 'minecraft:blackstone')
@@ -136,4 +143,4 @@ function registerTFGBeneathPlacedFeatures(event) {
136143
event.add('tfg:nether_underground_decoration', 'minecraft:spring_open')
137144
event.add('tfg:nether_underground_decoration', 'minecraft:spring_closed')
138145
event.add('tfg:nether_underground_decoration', 'tfg:nether/terrain/magma_blob')
139-
}
146+
}

0 commit comments

Comments
 (0)