other.lua 349 B

12345678910111213
  1. minetest.register_node("ship:0_gravity", {
  2. description = "0 Gravity Gas",
  3. drawtype = "glasslike",
  4. tiles = {"ship_0_gravity.png"},
  5. paramtype = "light",
  6. sunlight_propagates = true,
  7. walkable = false,
  8. use_texture_alpha = true,
  9. climbable = true,
  10. post_effect_color = {a=50, r = 20, g = 60, b = 90},
  11. groups = {breakable=1}
  12. })