Skip to content

Commit

Permalink
Merge pull request #38485 from jkraybill/38473
Browse files Browse the repository at this point in the history
Add missing sound metadata to booby traps and landmines
  • Loading branch information
ZhilkinSerg authored Mar 1, 2020
2 parents 76c12c3 + 6bd199d commit adb3d75
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions data/json/traps.json
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,15 @@
"difficulty": 10,
"action": "landmine",
"drops": [ "landmine" ],
"vehicle_data": { "do_explosion": true, "damage": 1000, "shrapnel": 8, "sound_volume": 10 }
"vehicle_data": {
"do_explosion": true,
"damage": 1000,
"shrapnel": 8,
"sound_volume": 10,
"sound": "Boom!",
"sound_type": "explosion",
"sound_variant": "default"
}
},
{
"type": "trap",
Expand All @@ -374,7 +382,15 @@
"difficulty": 10,
"action": "landmine",
"drops": [ "landmine" ],
"vehicle_data": { "do_explosion": true, "damage": 1000, "shrapnel": 8, "sound_volume": 10 }
"vehicle_data": {
"do_explosion": true,
"damage": 1000,
"shrapnel": 8,
"sound_volume": 10,
"sound": "Boom!",
"sound_type": "explosion",
"sound_variant": "default"
}
},
{
"type": "trap",
Expand Down Expand Up @@ -495,7 +511,15 @@
"difficulty": 7,
"action": "boobytrap",
"drops": [ "boobytrap" ],
"vehicle_data": { "do_explosion": true, "damage": 1000, "shrapnel": 12, "sound_volume": 18 }
"vehicle_data": {
"do_explosion": true,
"damage": 1000,
"shrapnel": 12,
"sound_volume": 18,
"sound": "Boom!",
"sound_type": "explosion",
"sound_variant": "default"
}
},
{
"type": "trap",
Expand Down

0 comments on commit adb3d75

Please sign in to comment.