Advertisement
kssr3951

recipes

Apr 10th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.05 KB | None | 0 0
  1. os.loadApi("items")
  2.  
  3. Cobblestone_Wall = { [1] = { how = "craft", producedNum = 6, place = "aaa/aaa"    , resources = { a = items.Cobblestone } } }
  4. Cobblestone_Slab = { [1] = { how = "craft", producedNum = 6, place = "aaa"        , resources = { a = items.Cobblestone } } }
  5. Furnace          = { [1] = { how = "craft", producedNum = 1, place = "aaa/a a/aaa", resources = { a = items.Cobblestone } } }
  6. Wood_Plank       = { [1] = { how = "craft", producedNum = 4, place = "a"          , resources = { a = items.Wood        } } }
  7. Chest            = { [1] = { how = "craft", producedNum = 1, place = "aaa/a a/aaa", resources = { a = items.Wood_Plank  } } }
  8. Stick            = { [1] = { how = "craft", producedNum = 4, place = "a/a"        , resources = { a = items.Wood_Plank  } } }
  9.  
  10. Diamond_Pickaxe  = { [1] = { how = "craft", producedNum = 1, place = "aaa/ b / b ", resources = { a = items.Diamond, b = items.Stick } },
  11.                      [2] = { how = "repair" } }
  12.  
  13. Stone            = { [1] = { how = "bake" , producedNum = 1, resource = items.Cobblestone } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement