katey1801

Sugar Recipe (Honey) Automated! (Staxel)

Mar 15th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. For the honey powder, change your reaction code to this:
  2. {
  3. "name": "HoneyPowder",
  4. "code": "cable.reaction.BakeHoneyPowder",
  5. "recipeStep": "autoBake",
  6. "tools": [
  7. ],
  8. "docks": [
  9. "mods.autoBaker.autoBaker"
  10. ],
  11. "reagents": [
  12. { "code": "staxel.item.gatherable.HoneyPotFull" }
  13. ],
  14. "results": [
  15. { "code": "cable.item.HoneyPowder" }
  16. ],
  17. "duration": 3,
  18. "moveResultsToSite": "results",
  19. "triggerDurationCraftManually": true,
  20. "effectTrigger": "staxel.effect.DockBakedItem",
  21. "action": "staxel.entityAction.Stir",
  22. "effect": "staxel.effect.cooking.OvenSmoke",
  23. "processDrawable": "whitesugar", "automated": true,
  24. "automationDelay": 2,
  25. }
  26.  
  27. And for the Sugar recipe, change the reaction code to this:
  28.  
  29. {
  30. "name": "Sugar",
  31. "code": "cable.reaction.ChopSugar",
  32. "recipeStep": "autoCut",
  33. "tools": [
  34. ],
  35. "docks": [
  36. "mods.autoChopper.autoChopper"
  37. ],
  38. "reagents": [
  39. { "code": "cable.item.HoneyPowder" }
  40. ],
  41. "results": [
  42. { "code": "staxel.item.crafting.WhiteSugar" }
  43. ],
  44. "moveResultsToSite": "results",
  45. "effectTrigger": "staxel.effect.DockItem",
  46. "duration": 5,
  47. "triggerDurationCraftManually": true,
  48. "effect": "staxel.effect.cooking.Chop",
  49. "action": "staxel.entityAction.CutFood", "automated": true,
  50. "automationDelay": 2,
  51.  
  52. }
Add Comment
Please, Sign In to add comment