From 072c3f261bf5f92d8ddffbc9cff65afc9d4fd5ca Mon Sep 17 00:00:00 2001 From: bloodbowel <177868717+bloodbowel@users.noreply.github.com> Date: Tue, 10 Sep 2024 10:56:12 -0500 Subject: [PATCH] Hardened convict profession (#75639) * Update professions.json removes the convicts skills, proficiencies, and shiv and adds a hardened convict with those * Update scenarios.json adds the hardened convict option to the prison scenarios * added spaces --------- Co-authored-by: brodbowl <177868717+brodbowl@users.noreply.github.com> --- data/json/professions.json | 15 ++++++++++++++- data/json/scenarios.json | 2 ++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/data/json/professions.json b/data/json/professions.json index adff68052bdc9..f84b27ed5263b 100644 --- a/data/json/professions.json +++ b/data/json/professions.json @@ -4355,6 +4355,18 @@ "id": "convict", "name": "Convict", "description": "Your trial was contentious, but ultimately you found yourself behind bars. The Cataclysm has offered you a chance to escape, but freedom may come with a steep price.", + "points": -1, + "items": { + "both": [ "striped_shirt", "striped_pants", "sneakers", "socks" ], + "male": { "entries": [ { "item": "briefs" } ] }, + "female": { "entries": [ { "item": "bra" }, { "item": "panties" } ] } + } + }, + { + "type": "profession", + "id": "hardened_convict", + "name": "Hardened Convict", + "description": "Most of your adult life has been spent in prison doing hard time. It's been rough but you've learned a few tricks to keep them on their toes. Time to see how tough these zombies are.", "points": 0, "proficiencies": [ "prof_unarmed_familiar", "prof_shivs_familiar" ], "skills": [ @@ -4367,7 +4379,8 @@ "both": [ "striped_shirt", "striped_pants", "sneakers", "socks", "glass_shiv" ], "male": { "entries": [ { "item": "briefs" } ] }, "female": { "entries": [ { "item": "bra" }, { "item": "panties" } ] } - } + }, + "age_lower": 25 }, { "type": "profession", diff --git a/data/json/scenarios.json b/data/json/scenarios.json index 2b5b36eb62bb3..085d3a463edc3 100644 --- a/data/json/scenarios.json +++ b/data/json/scenarios.json @@ -673,6 +673,7 @@ "start_name": "Prison", "professions": [ "convict", + "hardened_convict", "death_row_convict", "convict_assassin", "convict_embezzler", @@ -694,6 +695,7 @@ "start_name": "Island prison", "professions": [ "convict", + "hardened_convict", "death_row_convict", "convict_assassin", "convict_embezzler",