Guest User

Untitled

a guest
Oct 1st, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. -- mod depends on default
  2.  
  3. minetest.register_node("protection_chest:chest", {
  4.  
  5. description = "Protection Chest",
  6.         tiles = {
  7.                 "default_chest_top.png",
  8.                 "default_chest_top.png",
  9.                 "default_chest_side.png",
  10.                 "default_chest_side.png",
  11.                 "default_chest_lock.png",
  12.                 "default_chest_inside.png"
  13.         },
  14.         sounds = default.node_sound_wood_defaults(),
  15.         groups = {choppy = 2, oddly_breakable_by_hand = 2},
  16.         paramtype2 = "facedir",
  17. })
Advertisement
Add Comment
Please, Sign In to add comment