Advertisement
Guest User

Untitled

a guest
Dec 6th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. minetest.register_node("octutool:box", {
  2. tiles = {"octu_cart_top.png", "octu_cart_bottom.png", "octu_cart_side.png", "octu_cart_side.png", "carts_cart_side.png", "octu_cart_side.png"},
  3. drawtype = "nodebox",
  4. node_box = {
  5. type = "fixed",
  6. fixed = {
  7. {-0.5, -0.45, -0.5, 0.5, 0.5, -0.5+1/16},
  8. {-0.5, -0.45, -0.5, -0.5+1/16, 0.5, 0.5},
  9. {0.5, -0.5, 0.5, -0.5, 0.5, 0.5-1/16},
  10. {0.5, -0.5, 0.5, 0.5-1/16, 0.5, -0.5},
  11.  
  12. {-0.5, -0.5, -0.5, 0.5, -0.3, 0.5},
  13. },
  14. },
  15. groups = {oddly_breakable_by_hand=3, not_in_creative_inventory=1},
  16. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement