Skip to content

Commit

Permalink
feat: added recipe for rice dough to the mixer modular machine
Browse files Browse the repository at this point in the history
closes #2447
  • Loading branch information
Jandakast committed May 15, 2018
1 parent c79fcc1 commit 8c01c55
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/config/mputils/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Enhancements:
* Removed the Cyclic conveyors as they are not needed and the new ones claims more Ids which we dont't want to waste
* Adjusted Aevitas attunement perk and Mineralis ritual to only spawn geolosys ores
* Added recipes for the Bronze tools added by PickelTweaks
* Added recipe for rice dough to the Mixer modular machine (#2447)

Mod Updates:
* Actually Additions (r135)
Expand Down
8 changes: 8 additions & 0 deletions src/scripts/mod_integrations/modular_machinery/mixer.zs
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,12 @@ for i in 0 to machineCount {
.addItemInput(<ore:dustWood>, 4)
.addFluidInput(<liquid:water> * 250)
.build();

RecipeBuilder.newBuilder(createRecipeName(machineNameComplete, "rice_dough"), machineNameComplete, 300 / defaultTimeScaler)
.addEnergyPerTickInput(20 * energyScalingMultiplier[i])
.addItemOutput(<actuallyadditions:item_misc:9> * 4)
.addItemInput(<ore:foodSalt>)
.addItemInput(<betterwithaddons:japanmat:4> * 4)
.addFluidInput(<liquid:water> * 250)
.build();
}

0 comments on commit 8c01c55

Please sign in to comment.