Advertisement
Guest User

Untitled

a guest
Jun 26th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. minetest.register_node("framedglass:plasma_lamp_1", {
  2. description = "Plasma Lamp",
  3. drawtype = "glasslike_framed",
  4. tiles = {"default_gold_block.png","framedglass_glass_face_clean.png"},
  5. special_tiles = {
  6. {
  7. name="plasma_storm.png",
  8. animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=4.0},
  9. }
  10. },
  11. use_texture_alpha = true,
  12. paramtype = "light",
  13. light_source = LIGHT_MAX - 1,
  14. sunlight_propagates = true,
  15. groups = {cracky=3,oddly_breakable_by_hand=3},
  16. sounds = default.node_sound_glass_defaults(),
  17. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement