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

Adds new starting scenario - Crazy party and new starting profession - Frat Boy/Sorority Girl #37512

Merged
merged 3 commits into from
Mar 6, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
14 changes: 14 additions & 0 deletions data/json/professions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4004,5 +4004,19 @@
]
}
}
},
{
"type": "profession",
"ident": "frat",
"name": { "male": "Frat Boy", "female": "Frat Girl" },
CountAlex marked this conversation as resolved.
Show resolved Hide resolved
"description": "You were living your life without care in the world spending your parents money. When you were at another crazy party, suddenly people around you became hungry for more than your money. You still have a chance to use last symbol of your luxury life - your sport car - and get far away.",
"points": 2,
"skills": [ { "level": 1, "name": "speech" }, { "level": 2, "name": "driving" } ],
"vehicle": "car_sports",
"items": {
"both": { "items": [ "gold_watch", "water_mineral", "smart_phone", "money_bundle", "cig", "ref_lighter" ] },
"male": [ "boxer_shorts", "pants", "dress_shoes", "polo_shirt", "socks" ],
"female": [ "tank_top", "bra", "panties", "skirt", "heels", "jacket_leather", "stockings" ]
}
}
]
11 changes: 11 additions & 0 deletions data/json/scenarios.json
Original file line number Diff line number Diff line change
Expand Up @@ -527,5 +527,16 @@
"allowed_locs": [ "mil_base_2g" ],
"professions": [ "soldier", "specops", "bio_soldier", "bio_sniper" ],
"flags": [ "CHALLENGE", "LONE_START" ]
},
{
"type": "scenario",
"ident": "presort",
"name": "Crazy party",
"points": 0,
"description": "Crazy party in secluded resort went very wrong - first cops arrived to ruin it, then dancers, guests and everyone around suddenly decided to have a piece of you.",
"start_name": "Private resort",
"allowed_locs": [ "p_resort_2ss" ],
"professions": [ "frat", "gangster", "lost_sub", "lawyer", "politician", "dancer" ],
CountAlex marked this conversation as resolved.
Show resolved Hide resolved
"flags": [ "CHALLENGE", "LONE_START" ]
}
]
6 changes: 6 additions & 0 deletions data/json/start_locations.json
Original file line number Diff line number Diff line change
Expand Up @@ -427,5 +427,11 @@
"ident": "mil_base_2g",
"name": "Military Base Warehouse",
"target": "mil_base_2g"
},
{
"type": "start_location",
"ident": "p_resort_2ss",
"name": "Private resort",
"target": "p_resort_2ss"
}
]