Advertisement
Guest User

Untitled

a guest
Jan 11th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. minetest.register_node("smoothhills:corner_dirt_with_grass_high", {
  2. description = description,
  3. drawtype = "nodebox",
  4. tiles = {"default_grass.png", "default_dirt.png", "[combine:16x8:0,0=default_dirt.png:0,0=default_grass_side.png"},
  5. paramtype = "light",
  6. paramtype2 = "facedir",
  7. pointable = true,
  8. buildable_to = true,
  9. is_ground_content = false,
  10. sunlight_propagates = sunlight,
  11. groups = {dig_immediate=3, crumbly=3, falling_node=1, dirt=1},
  12. sounds = default.node_sound_dirt_defaults(),
  13. drop = "",
  14. node_box = {
  15. type = "fixed",
  16. fixed = {
  17. {-0.5, -0.5, -0.5, 0, 0, 0.0625},
  18. {-0.0625, -0.5, 0, 0.5, 0, 0.5},
  19. {-0.5, -0.5, 0, 0, 0.5, 0.5},
  20. },
  21. }})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement