bed.lua 955 B

1234567891011121314151617181920212223242526272829303132333435
  1. ----------------------------------------------------------
  2. -- Bed
  3. beds.register_bed("earthbuild:primitive_bed", {
  4. description = "Primitive Bed",
  5. inventory_image = "earthbuild_primitive_bed.png",
  6. wield_image = "earthbuild_primitive_bed.png",
  7. tiles = {
  8. bottom = {
  9. "earthbuild_thatch.png^[transformR90",
  10. "default_wood.png",
  11. "earthbuild_bed_side.png",
  12. "earthbuild_bed_side.png^[transformfx",
  13. "earthbuild_bed_side.png"
  14. },
  15. top = {
  16. "earthbuild_thatch.png^[transformR90",
  17. "default_wood.png",
  18. "earthbuild_bed_side.png",
  19. "earthbuild_bed_side.png^[transformfx",
  20. "earthbuild_bed_side.png",
  21. }
  22. },
  23. nodebox = {
  24. bottom = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5},
  25. top = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5},
  26. },
  27. selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
  28. recipe = {
  29. {"earthbuild:thatch", "earthbuild:thatch", "earthbuild:thatch"},
  30. {"group:wood", "group:wood", "group:wood"},
  31. },
  32. })