From 1a393dc9d4294152c9aeb123d2fd9858d4787662 Mon Sep 17 00:00:00 2001
From: CountAlex <countserg@gmail.com>
Date: Fri, 6 Mar 2020 13:39:24 +0300
Subject: [PATCH] Add Crazy Party scenario and Frat Boy/Sorority Girl
 profession (#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 7802bf003eab9..a1c2d4e7620ce 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 62929b4ba872d..9bd8afd1e6eca 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 05b218ea12183..92b83d6f4edd6 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"
   }
 ]