grist: buff improved build grist, cut out the janky dissolution chamber fluid conversions, fix flour crushing in create
This commit is contained in:
@ -9,7 +9,8 @@ ServerEvents.recipes(event => {
|
||||
// Vanilla crafting with a hammer gives 0.5x flour per wheat
|
||||
event.shapeless(flourItem.withCount(1), ['2x #croptopia:flourable', '#alltheores:ore_hammers']);
|
||||
// Basic tier of grist gives 2x flour per wheat
|
||||
event.recipes.createCrushing(flourItem.withCount(2), '#croptopia:flourable');
|
||||
event.recipes.create.crushing(flourItem.withCount(2), '#croptopia:flourable');
|
||||
event.recipes.create.milling(flourItem.withCount(2), '#croptopia:flourable');
|
||||
// Late basic gives 4x per wheat
|
||||
event.recipes.thermal.pulverizer('#croptopia:flourable', [flourItem.withCount(4)]);
|
||||
|
||||
|
@ -83,11 +83,11 @@ ServerEvents.recipes(event => {
|
||||
grist blend comes from basic + improved primordeal block + sulfur in induction smelter
|
||||
*/
|
||||
event.recipes.thermal.crystallizer(
|
||||
'4x kubejs:grist_build_improved',
|
||||
['4x minecraft:clay', '2x #kubejs:grist/build/improved', Fluid.of('kubejs:grist_primordeal_improved_fluid', 4500)]
|
||||
'kubejs:grist_build_improved_block',
|
||||
['4x minecraft:clay', '#kubejs:grist/build/improved', Fluid.of('kubejs:grist_primordeal_improved_fluid', 4500)]
|
||||
);
|
||||
event.recipes.thermal.crystallizer(
|
||||
'kubejs:grist_build_improved',
|
||||
'kubejs:grist_build_improved_block',
|
||||
['32x kubejs:reinforced_grist_ingot', Fluid.of('kubejs:grist_primordeal_improved_fluid', 4000)]
|
||||
);
|
||||
|
||||
|
@ -51,7 +51,7 @@ ServerEvents.recipes(event => {
|
||||
event.shapeless(blockID, [`9x ${id}`]);
|
||||
event.shapeless(`9x ${id}`, [blockID]);
|
||||
|
||||
event.custom({
|
||||
/*event.custom({
|
||||
type: "industrialforegoing:dissolution_chamber",
|
||||
input: [],
|
||||
inputFluid: `{Amount:250,FluidName:\"${fluidID}\"}`,
|
||||
@ -73,7 +73,7 @@ ServerEvents.recipes(event => {
|
||||
},
|
||||
outputFluid: `{Amount:250,FluidName:\"${fluidID}\"}`,
|
||||
processingTime: 50
|
||||
});
|
||||
});*/
|
||||
});
|
||||
|
||||
// Progression along primordeals and universals
|
||||
|
Reference in New Issue
Block a user