Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. minetest.register_node("lottblocks:elven_stone", {
  3. tile_images = {"lottblocks_elven_stone.png"},
  4. groups={cracky},
  5. })
  6.  
  7. //CRAFT
  8.  
  9. minetest.register_craft({
  10. output = '"tutorial:decowood" 2',
  11. recipe = {
  12. {'default:stone', 'default:stone', ''},
  13. {'lottplants:mallornwood', 'lottplants:mallornwood', ''},
  14. {'', '', ''},
  15. }
  16. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement