[
{
“type” : “terrain”,
“id” : “t_rock_smooth_h”,
“name”: “smoothed rock”,
“symbol”: “-”, “//”: “use pillars, ‘t_column’, for the corners”,
“color”: “white”,
“move_cost”: 0,
“flags”: [“NOITEM”, “SUPPORTS_ROOF”, “WALL”],
“roof”: “t_rock_floor”,
“bash”: {
“str_min”: 120, “str_max”: 400,
“sound”: “crash!”,
“sound_fail”: “whump!”,
“ter_set”: “t_rock_floor”,
“items”: [
{ “item”: “rock”, “count”: [6, 12] },
{ “item”: “material_rocksalt”, “count”: [0, 1], “prob”: 10 },
{ “item”: “socks”, “count”: [1, 2], “prob”: 2 }
]
}
},{
“type” : “terrain”,
“id” : “t_rock_smooth_v”,
“name”: “smoothed rock”,
“symbol”: “|”, “//”: “use pillars, ‘t_column’, for the corners”,
“color”: “white”,
“move_cost”: 0,
“flags”: [“NOITEM”, “SUPPORTS_ROOF”, “WALL”],
“roof”: “t_rock_floor”,
“bash”: {
“str_min”: 120, “str_max”: 400,
“sound”: “crash!”,
“sound_fail”: “whump!”,
“ter_set”: “t_rock_floor”,
“items”: [
{ “item”: “rock”, “count”: [6, 12] },
{ “item”: “material_rocksalt”, “count”: [0, 1], “prob”: 10 },
{ “item”: “socks”, “count”: [1, 2], “prob”: 2 }
]
}
}
]
{
“type” : “furniture”,
“id” : “f_grave_head”,
“name”: “headstone”,
“symbol”: “_”,
“color”: “lggray”,
“move_cost_mod”: 1,
“required_str”: -1,
“flags”: [“TRANSPARENT”, “SHORT”, “NOCOLLIDE”, “ALLOW_FIELD_EFFECT”, “MOUNTABLE”, “PLACE_ITEM”],
“bash”: {
“str_min”: 50, “str_max”: 150,
“sound”: “crash!”,
“sound_fail”: “thump!”,
“items”: [
{ “item”: “rock”, “count”: [2, 4] }
]
}
},{
“type” : “furniture”,
“id” : “f_grave_stone”,
“name”: “gravestone”,
“symbol”: “^”,
“color”: “dkgray”,
“move_cost_mod”: 2,
“required_str”: -1,
“flags”: [“NOITEM”, “TRANSPARENT”, “MOUNTABLE”, “ROUGH”, “PLACE_ITEM”],
“bash”: {
“str_min”: 60, “str_max”: 160,
“sound”: “crash!”,
“sound_fail”: “thump!”,
“items”: [
{ “item”: “rock”, “count”: [8, 14] }
]
}
},{
“type” : “furniture”,
“id” : “f_grave_monument”,
“name”: “obelisk”,
“symbol”: “$”,
“color”: “black_white”,
“move_cost_mod”: 2,
“required_str”: -1,
“flags”: [“NOITEM”, “SUPPORTS_ROOF”, “WALL”],
“bash”: {
“str_min”: 80, “str_max”: 180,
“sound”: “crash!”,
“sound_fail”: “thunk!”,
“items”: [
{ “item”: “rock”, “count”: [18, 30] }
]
}
}
Right off the rip I have some new stuff I want to introduce. The smooth stone could be usful anywhere, so I expect to see it happen.