Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- For the honey powder, change your reaction code to this:
- {
- "name": "HoneyPowder",
- "code": "cable.reaction.BakeHoneyPowder",
- "recipeStep": "autoBake",
- "tools": [
- ],
- "docks": [
- "mods.autoBaker.autoBaker"
- ],
- "reagents": [
- { "code": "staxel.item.gatherable.HoneyPotFull" }
- ],
- "results": [
- { "code": "cable.item.HoneyPowder" }
- ],
- "duration": 3,
- "moveResultsToSite": "results",
- "triggerDurationCraftManually": true,
- "effectTrigger": "staxel.effect.DockBakedItem",
- "action": "staxel.entityAction.Stir",
- "effect": "staxel.effect.cooking.OvenSmoke",
- "processDrawable": "whitesugar", "automated": true,
- "automationDelay": 2,
- }
- And for the Sugar recipe, change the reaction code to this:
- {
- "name": "Sugar",
- "code": "cable.reaction.ChopSugar",
- "recipeStep": "autoCut",
- "tools": [
- ],
- "docks": [
- "mods.autoChopper.autoChopper"
- ],
- "reagents": [
- { "code": "cable.item.HoneyPowder" }
- ],
- "results": [
- { "code": "staxel.item.crafting.WhiteSugar" }
- ],
- "moveResultsToSite": "results",
- "effectTrigger": "staxel.effect.DockItem",
- "duration": 5,
- "triggerDurationCraftManually": true,
- "effect": "staxel.effect.cooking.Chop",
- "action": "staxel.entityAction.CutFood", "automated": true,
- "automationDelay": 2,
- }
Add Comment
Please, Sign In to add comment