Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2021
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.50 KB | None | 0 0
  1. {
  2.     tiles = {
  3.         "default_stone_brick.png^[colorize:#e3ff0070"
  4.     },
  5.     is_ground_content = false,
  6.     groups = {
  7.         stone = 1,
  8.         cracky = 2
  9.     },
  10.     sounds = {
  11.         dug = {
  12.             name = "default_hard_footstep",
  13.             gain = 1
  14.         },
  15.         footstep = {
  16.             name = "default_hard_footstep",
  17.             gain = 0.3
  18.         },
  19.         place = {
  20.             name = "default_place_node_hard",
  21.             gain = 1
  22.         }
  23.     },
  24.     mod_origin = "cblocks",
  25.     type = "node",
  26.     paramtype = "light",
  27.     name = "cblocks:stonebrick_yellow",
  28.     description = "Yellow Stone Brick"
  29. }
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement