Alpha Release: 0.9.0 (#849)
Signed-off-by: Pyritie <pyritie@gmail.com> Signed-off-by: TomPlop <tomdidome@gmail.com> Co-authored-by: Xikaro <os.valerievich@ya.ru> Co-authored-by: Nebby <78170922+Nebby1999@users.noreply.github.com> Co-authored-by: Redeix <brayden.j.m.ford@gmail.com> Co-authored-by: TomPlop <tomdidome@gmail.com> Co-authored-by: aidie8 <aidenvanzuilen@gmail.com> Co-authored-by: Xikaro <55663835+Xikaro@users.noreply.github.com> Co-authored-by: Zleub <debray.arnaud@gmail.com>
This commit is contained in:
parent
d344316e5a
commit
ec2e3cd3c4
2193 changed files with 104602 additions and 53195 deletions
61
kubejs/server_scripts/rnr/recipes.js
Normal file
61
kubejs/server_scripts/rnr/recipes.js
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
const registerRnrRecipes = (event) => {
|
||||
event.remove({input: 'rnr:concrete_powder'})
|
||||
event.remove({id: 'rnr:crafting/concrete_powder'})
|
||||
|
||||
//#region Recipes
|
||||
event.recipes.gtceu.assembler('rnr:assembler/base_course')
|
||||
.itemInputs('1x rnr:crushed_base_course', '1x #tfc:dirt')
|
||||
.itemOutputs('2x rnr:base_course')
|
||||
.circuit(7)
|
||||
.duration(20)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.assembler('rnr:assembler/crushed_base_course')
|
||||
.itemInputs('1x #forge:gravel', '1x #rnr:loose_rock_items')
|
||||
.itemOutputs('8x rnr:crushed_base_course')
|
||||
.circuit(7)
|
||||
.duration(20)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
global.TFC_STONE_TYPES.forEach(stone => {
|
||||
event.recipes.gtceu.assembler(`rnr:assembler/flagstone/${stone}`)
|
||||
.itemInputs(`tfc:rock/loose/${stone}`)
|
||||
.itemOutputs(`2x rnr:flagstone/${stone}`)
|
||||
.circuit(7)
|
||||
.duration(20)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.assembler(`rnr:assembler/flagstone/mossy_${stone}`)
|
||||
.itemInputs(`tfc:rock/mossy_loose/${stone}`)
|
||||
.itemOutputs(`2x rnr:flagstone/${stone}`)
|
||||
.circuit(7)
|
||||
.duration(20)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
});
|
||||
|
||||
global.SAND_COLORS.forEach(sand => {
|
||||
event.recipes.gtceu.assembler(`rnr:assembler/flagstone/${sand}_sandstone`)
|
||||
.itemInputs(`tfc:raw_sandstone/${sand}`)
|
||||
.itemOutputs(`8x rnr:flagstone/${sand}_sandstone`)
|
||||
.circuit(7)
|
||||
.duration(20)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
});
|
||||
|
||||
event.smelting(
|
||||
'1x rnr:terracotta_roof_tile',
|
||||
'rnr:unfired_terracotta_roof_tile'
|
||||
).id('rnr:smelting/unfired_terracotta_roof_tile')
|
||||
|
||||
event.smelting(
|
||||
'1x rnr:ceramic_roof_tile',
|
||||
'rnr:unfired_roof_tile'
|
||||
).id('rnr:smelting/unfired_roof_tile')
|
||||
|
||||
event.recipes.gtceu.mixer('rnr:mixer/wet_concrete_mix')
|
||||
.inputFluids(Fluid.of('gtceu:concrete', 192), Fluid.of('minecraft:water', 808))
|
||||
.outputFluids(Fluid.of('rnr:concrete', 1000))
|
||||
.circuit(7)
|
||||
.duration(200)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
};
|
||||
7
kubejs/server_scripts/rnr/tags.js
Normal file
7
kubejs/server_scripts/rnr/tags.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
const registerRnrItemTags = (event) => {
|
||||
|
||||
global.RNR_DISABLED_ITEMS.forEach(item => {
|
||||
event.removeAllTagsFrom(item)
|
||||
event.add('c:hidden_from_recipe_viewers', item)
|
||||
});
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue