forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from CleverRaven/master
Update #15
- Loading branch information
Showing
368 changed files
with
17,342 additions
and
7,652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[ | ||
{ | ||
"type": "terrain", | ||
"id": "t_thconc_floor_flesh", | ||
"name": "overgrown floor", | ||
"description": "A bare concrete floor, almost completely covered by twitching filaments of grey flesh.", | ||
"symbol": ".", | ||
"color": "red_yellow", | ||
"move_cost": 5, | ||
"roof": "t_flat_roof", | ||
"flags": [ "TRANSPARENT", "SUPPORTS_ROOF", "COLLAPSES", "INDOORS", "FLAT" ], | ||
"bash": { | ||
"sound": "SMASH!", | ||
"ter_set": "t_concrete", | ||
"str_min": 10, | ||
"str_max": 20, | ||
"str_min_supported": 10, | ||
"items": [ { "item": "meat_tainted", "count": [ 5, 10 ] } ] | ||
} | ||
}, | ||
{ | ||
"type": "terrain", | ||
"id": "t_concrete_wall_flesh", | ||
"name": "overgrown wall", | ||
"description": "A concrete wall overgrown by a grotesque grid of veins and knotted flesh.", | ||
"symbol": "LINE_OXOX", | ||
"color": "magenta_yellow", | ||
"move_cost": 0, | ||
"coverage": 100, | ||
"roof": "t_flat_roof", | ||
"flags": [ "NOITEM", "SUPPORTS_ROOF", "WALL", "NO_SCENT", "AUTO_WALL_SYMBOL", "MINEABLE", "BLOCK_WIND" ], | ||
"bash": { | ||
"str_min": 10, | ||
"str_max": 20, | ||
"sound": "crash!", | ||
"sound_fail": "whump!", | ||
"ter_set": "t_strconc_wall", | ||
"items": [ { "item": "meat_tainted", "count": [ 5, 10 ] } ] | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
[ | ||
{ | ||
"type": "terrain", | ||
"id": "t_pavement_hw_air", | ||
"name": "bridge pavement", | ||
"description": "A bridge section made out of metal and concrete.", | ||
"looks_like": "t_pavement", | ||
"symbol": ".", | ||
"color": "dark_gray", | ||
"move_cost": 2, | ||
"flags": [ "TRANSPARENT", "FLAT", "ROAD", "MINEABLE" ], | ||
"bash": { | ||
"str_min": 70, | ||
"str_max": 300, | ||
"sound": "concrete cracking and metal screeching!", | ||
"sound_fail": "whump!", | ||
"ter_set": "t_open_air", | ||
"items": [ { "item": "rock", "count": [ 4, 20 ] }, { "item": "rebar", "count": [ 10, 20 ] } ] | ||
} | ||
}, | ||
{ | ||
"type": "terrain", | ||
"id": "t_pavement_y_hw_air", | ||
"name": "bridge yellow pavement", | ||
"description": "A bridge section made out of metal and concrete. It's painted yellow.", | ||
"looks_like": "t_pavement_y", | ||
"symbol": ".", | ||
"color": "yellow", | ||
"move_cost": 2, | ||
"flags": [ "TRANSPARENT", "FLAT", "ROAD", "MINEABLE" ], | ||
"bash": { | ||
"str_min": 70, | ||
"str_max": 300, | ||
"sound": "concrete cracking and metal screeching!", | ||
"sound_fail": "whump!", | ||
"ter_set": "t_open_air", | ||
"items": [ { "item": "rock", "count": [ 4, 20 ] }, { "item": "rebar", "count": [ 10, 20 ] } ] | ||
} | ||
}, | ||
{ | ||
"type": "terrain", | ||
"id": "t_sidewalk_hw_air", | ||
"name": "bridge sidewalk", | ||
"description": "The sidewalk section of a concrete bridge.", | ||
"looks_like": "t_sidewalk", | ||
"symbol": ".", | ||
"color": "light_gray", | ||
"move_cost": 2, | ||
"flags": [ "TRANSPARENT", "FLAT", "ROAD", "MINEABLE" ], | ||
"bash": { | ||
"str_min": 70, | ||
"str_max": 300, | ||
"sound": "concrete cracking and metal screeching!", | ||
"sound_fail": "whump!", | ||
"ter_set": "t_open_air", | ||
"items": [ { "item": "rock", "count": [ 4, 20 ] }, { "item": "rebar", "count": [ 10, 20 ] } ] | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.