* egh update * changelog and config * add spore blossom, remove beneath leaves (those are for mars) Signed-off-by: Pyritie <pyritie@gmail.com> * Update tags.beneath.js Signed-off-by: Pyritie <pyritie@gmail.com> --------- Signed-off-by: Pyritie <pyritie@gmail.com> Co-authored-by: Pyritie <pyritie@gmail.com>
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
// priority: 0
|
|
"use strict";
|
|
|
|
/**
|
|
*
|
|
* @param {Internal.RecipesEventJS} event
|
|
*/
|
|
function registerMacawsForTFCRecipes(event) {
|
|
event.replaceInput({ mod: 'mcw_tfc_aio' }, 'minecraft:stick', '#forge:rods/wooden')
|
|
event.replaceInput({ mod: 'mcw_tfc_aio' }, 'minecraft:string', '#forge:string')
|
|
event.replaceInput({ mod: 'mcw_tfc_aio' }, 'minecraft:glass', '#forge:glass')
|
|
event.replaceInput({ mod: 'mcw_tfc_aio' }, 'minecraft:glass_pane', '#forge:glass_panes')
|
|
event.remove({ input: '@mcw_tfc_aio', type: 'gtceu:steam_boiler' })
|
|
event.remove({ input: '@mcw_tfc_aio', type: 'gtceu:large_boiler' })
|
|
|
|
global.TFC_WOOD_TYPES.forEach(wood => {
|
|
event.shaped(`8x mcw_tfc_aio:fences/${wood}_fences/${wood}_wired_fence`, [
|
|
'ABA',
|
|
'C C'
|
|
], {
|
|
A: '#forge:rods/wooden',
|
|
B: 'createaddition:barbed_wire',
|
|
C: `tfc:wood/log/${wood}`
|
|
}).id(`tfg:shaped/${wood}_wired_fence`)
|
|
})
|
|
|
|
event.remove({input: ['mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab','#tfc:saws']})
|
|
|
|
event.shapeless('minecraft:gray_terracotta', [
|
|
'mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab',
|
|
'mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab'
|
|
]).id('minecraft:gray_terracotta')
|
|
|
|
event.shaped(`4x mcw_tfc_aio:fences/other_fences/hedge`, [
|
|
'BAB',
|
|
'BAB'
|
|
], {
|
|
A: '#forge:rods/wooden',
|
|
B: '#minecraft:leaves'
|
|
}).id(`tfg:shaped/mcw_tfc/hedge_fence_from_leaves`);
|
|
};
|