Guest User

Untitled

a guest
Jul 8th, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. minetest.register_node("submarine:first", {
  2. description = "This is a node",
  3. tiles = {"first.png"},
  4. groups = {oddly_breakable_by_hand = 1}
  5. })
  6.  
  7. minetest.register_craft({
  8. output = "submarine:first",
  9. recipe = {{"default:dirt","" , "default:dirt"
  10. "", "default:dirt", ""}}
  11. })
Add Comment
Please, Sign In to add comment