Advertisement
Guest User

Untitled

a guest
May 10th, 2021
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.69 KB | None | 0 0
  1. data:extend(
  2. {
  3.  
  4. {
  5.     type = "recipe",
  6.     name = "test-convert",
  7.     category = "chemistry",
  8.     enabled = true,
  9.     energy_required = 1,
  10.     ingredients = {
  11.         {type = "fluid", name = "water", amount = 100}
  12.     },
  13.     results = {
  14.         {type = "fluid", name = "sulfuric-acid", amount = 100}
  15.     },
  16.     main_product = "sulfuric-acid"
  17. },
  18.  
  19. {
  20.     type = "recipe",
  21.     name = "test-convert-back",
  22.     category = "chemistry",
  23.     enabled = true,
  24.     energy_required = 1,
  25.     ingredients = {
  26.         {type = "fluid", name = "sulfuric-acid", amount = 100}
  27.     },
  28.     results = {
  29.         {type = "fluid", name = "water", amount = 100}
  30.     },
  31.     main_product = "water"
  32. }
  33.  
  34. }
  35. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement