“TRANSPARENT” - I think it means that the item does not restrict visibility (it has no shadow).
{
"type": "furniture",
"id": "f_rack",
"name": "display rack",
"symbol": "{",
"color": "ltgray",
"move_cost_mod": -1,
"required_str": 8,
"flags": ["TRANSPARENT", "FLAMMABLE_HARD", "BASHABLE", "PLACE_ITEM", "DECONSTRUCT", "BLOCKSDOOR"],
"bash": {
"str_min": 2, "str_max": 30,
"sound": "metal screeching!",
"sound_fail": "clang!",
"items": [
{ "item": "scrap", "amount": 8, "minamount": 2},
{ "item": "steel_chunk", "amount": 3, "minamount": 0},
{ "item": "pipe", "amount": 1 }
]
}
},
{
"type": "furniture",
"id": "f_bookcase",
"name": "book case",
"symbol": "{",
"color": "brown",
"move_cost_mod": -1,
"required_str": 9,
"flags": ["FLAMMABLE", "BASHABLE", "DECONSTRUCT", "PLACE_ITEM", "ORGANIC", "BLOCKSDOR"],
"bash": {
"str_min": 3, "str_max": 45,
"sound": "smash!",
"sound_fail": "whump.",
"items": [
{ "item": "2x4", "amount": 6, "minamount": 2},
{ "item": "nail", "amount": 12, "minamount": 4},
{ "item": "splinter", "amount": 1 }
]
}
},
NOITEM - I think it means that the item can not be put an, but you can take out of it (PLANT). PLACE_ITEM You can do everything
Designation filled container is defined somewhere else (in the code when processing the map?). So the question still to Kevin.