1[
2  {
3    "type": "terrain",
4    "id": "t_pavement_hw_air",
5    "name": "bridge pavement",
6    "connects_to": "PAVEMENT",
7    "description": "A bridge section made out of concrete and metal.",
8    "looks_like": "t_pavement",
9    "symbol": ".",
10    "color": "dark_gray",
11    "move_cost": 2,
12    "flags": [ "TRANSPARENT", "FLAT", "ROAD", "MINEABLE" ],
13    "bash": {
14      "str_min": 70,
15      "str_max": 300,
16      "sound": "concrete cracking and metal screeching!",
17      "sound_fail": "whump!",
18      "ter_set": "t_open_air",
19      "items": [ { "item": "rock", "count": [ 4, 20 ] }, { "item": "rebar", "count": [ 10, 20 ] } ]
20    }
21  },
22  {
23    "type": "terrain",
24    "id": "t_pavement_y_hw_air",
25    "name": "bridge yellow pavement",
26    "connects_to": "PAVEMENT",
27    "description": "A bridge section made out of concrete and metal.  It's painted yellow.",
28    "looks_like": "t_pavement_y",
29    "symbol": ".",
30    "color": "yellow",
31    "move_cost": 2,
32    "flags": [ "TRANSPARENT", "FLAT", "ROAD", "MINEABLE" ],
33    "bash": {
34      "str_min": 70,
35      "str_max": 300,
36      "sound": "concrete cracking and metal screeching!",
37      "sound_fail": "whump!",
38      "ter_set": "t_open_air",
39      "items": [ { "item": "rock", "count": [ 4, 20 ] }, { "item": "rebar", "count": [ 10, 20 ] } ]
40    }
41  },
42  {
43    "type": "terrain",
44    "id": "t_sidewalk_hw_air",
45    "name": "bridge sidewalk",
46    "description": "The sidewalk section of a concrete bridge.",
47    "looks_like": "t_sidewalk",
48    "symbol": ".",
49    "color": "light_gray",
50    "move_cost": 2,
51    "flags": [ "TRANSPARENT", "FLAT", "ROAD", "MINEABLE" ],
52    "bash": {
53      "str_min": 70,
54      "str_max": 300,
55      "sound": "concrete cracking and metal screeching!",
56      "sound_fail": "whump!",
57      "ter_set": "t_open_air",
58      "items": [ { "item": "rock", "count": [ 4, 20 ] }, { "item": "rebar", "count": [ 10, 20 ] } ]
59    }
60  }
61]
62