From 4141a4226b3342c94f734d85489513954b1750f9 Mon Sep 17 00:00:00 2001 From: CountAlex Date: Fri, 6 Mar 2020 13:39:24 +0300 Subject: [PATCH] Adds new starting scenario - Crazy party and new starting profession - Frat Boy/Sorority Girl (#37512) --- data/json/professions.json | 14 ++++++++++++++ data/json/scenarios.json | 11 +++++++++++ data/json/start_locations.json | 6 ++++++ 3 files changed, 31 insertions(+) diff --git a/data/json/professions.json b/data/json/professions.json index a6a973384eb1b..5744aed4af56b 100644 --- a/data/json/professions.json +++ b/data/json/professions.json @@ -4023,5 +4023,19 @@ ] } } + }, + { + "type": "profession", + "ident": "frat", + "name": { "male": "Frat Boy", "female": "Sorority Girl" }, + "description": "You were living the high life, spending your parents money without a care in the world. You were at one of your usual crazy parties when the guests became hungry for more than your drugs. You still have a chance to use the last symbol of your luxurious 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" ] + } } ] diff --git a/data/json/scenarios.json b/data/json/scenarios.json index 1e032ba98a591..07d6c5bb45a83 100644 --- a/data/json/scenarios.json +++ b/data/json/scenarios.json @@ -527,5 +527,16 @@ "allowed_locs": [ "mil_base_2g" ], "professions": [ "unemployed", "soldier", "specops", "bio_soldier", "bio_sniper", "labtech", "medic" ], "flags": [ "CHALLENGE", "LONE_START" ] + }, + { + "type": "scenario", + "ident": "presort", + "name": "Crazy party", + "points": 0, + "description": "You thought things couldn't get any worse when the cops came over to bust your wild party, even though you booked it at a private resort. When the guests started fighting with the police you tried to get them to calm down, only to find out they hungered for more.", + "start_name": "Private resort", + "allowed_locs": [ "p_resort_2ss" ], + "professions": [ "frat", "gangster", "lost_sub", "lawyer", "politician", "dancer", "bio_gangster" ], + "flags": [ "CHALLENGE", "LONE_START" ] } ] diff --git a/data/json/start_locations.json b/data/json/start_locations.json index 1ba9161c863b4..f5ab7a21d8526 100644 --- a/data/json/start_locations.json +++ b/data/json/start_locations.json @@ -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" } ]