Advertisement
Guest User

Untitled

a guest
Jun 25th, 2014
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. minetest.register_node("framedglass:water_tank", {
  2. description = "Water Tank",
  3. drawtype = "glasslike_framed",
  4. tiles1 = {"framedglass_wooden_frame.png","framedglass_glass_face_streaks.png"}
  5. special_tiles = {
  6. {
  7. name="liquid_animated.png",
  8. animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0},
  9. }
  10. },
  11. paramtype = "light",
  12. sunlight_propagates = true,
  13. groups = {cracky=3,oddly_breakable_by_hand=3},
  14. sounds = default.node_sound_glass_defaults(),
  15. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement