Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix house starting locations #37478

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 30 additions & 5 deletions data/json/scenarios.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@
"points": 0,
"description": "Whether due to stubbornness, ignorance, or just plain bad luck, you missed the evacuation, and are stuck in a city full of the risen dead.",
"allowed_locs": [
"house",
"house_w_1",
"house_w_2",
"house_w_3",
"house_w_4",
"house_w_5",
"house_w_6",
"s_grocery",
"s_grocery_1",
"s_garage",
Expand Down Expand Up @@ -67,7 +72,12 @@
"points": -2,
"description": "You've attracted the attention of living dead in some way, now they're all around and you'll likely have to fight thorough them if you want to escape.",
"allowed_locs": [
"house",
"house_w_1",
"house_w_2",
"house_w_3",
"house_w_4",
"house_w_5",
"house_w_6",
"school",
"s_grocery",
"s_grocery_1",
Expand Down Expand Up @@ -107,7 +117,12 @@
"points": -4,
"start_name": "In Town",
"allowed_locs": [
"house",
"house_w_1",
"house_w_2",
"house_w_3",
"house_w_4",
"house_w_5",
"house_w_6",
"school",
"s_grocery",
"s_grocery_1",
Expand All @@ -134,7 +149,12 @@
"points": -2,
"start_name": "In Town",
"allowed_locs": [
"house",
"house_w_1",
"house_w_2",
"house_w_3",
"house_w_4",
"house_w_5",
"house_w_6",
"school",
"s_grocery",
"s_grocery_1",
Expand All @@ -155,7 +175,12 @@
"description": "You start drunk to the point of incapacitation, depressed, infected, surrounded by fire, and sick with the flu. This day went downhill really fast.",
"start_name": "In Town",
"allowed_locs": [
"house",
"house_w_1",
"house_w_2",
"house_w_3",
"house_w_4",
"house_w_5",
"house_w_6",
"school",
"s_grocery",
"s_grocery_1",
Expand Down
34 changes: 32 additions & 2 deletions data/json/start_locations.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,39 @@
},
{
"type": "start_location",
"ident": "house",
"ident": "house_w_1",
"name": "House",
"target": "house"
"target": "house_w_1"
},
{
"type": "start_location",
"ident": "house_w_2",
"name": "House",
"target": "house_w_2"
},
{
"type": "start_location",
"ident": "house_w_3",
"name": "House",
"target": "house_w_3"
},
{
"type": "start_location",
"ident": "house_w_4",
"name": "House",
"target": "house_w_4"
},
{
"type": "start_location",
"ident": "house_w_5",
"name": "House",
"target": "house_w_5"
},
{
"type": "start_location",
"ident": "house_w_6",
"name": "House",
"target": "house_w_6"
},
{
"type": "start_location",
Expand Down