From 403377f9bfc639dfdd44b50f2a4a3201ba532ba4 Mon Sep 17 00:00:00 2001 From: Fris0uman Date: Mon, 14 Aug 2023 18:51:04 +0200 Subject: [PATCH] Apply suggestions and add missing file --- data/json/hobbies.json | 8 ++++---- data/json/profession_groups.json | 14 ++++++++++++++ 2 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 data/json/profession_groups.json diff --git a/data/json/hobbies.json b/data/json/hobbies.json index 2a7e27a9cd9ce..9b03f3196feef 100644 --- a/data/json/hobbies.json +++ b/data/json/hobbies.json @@ -4,9 +4,9 @@ "subtype": "hobby", "id": "driving_license", "name": "Driving License", - "description": "You got your driving license and know how to drive a car.", + "description": "You got your driving license and know how to drive a car, change the oil and tires, and other basics.", "points": 0, - "skills": [ { "level": 1, "name": "driving" } ] + "skills": [ { "level": 2, "name": "driving" }, { "level": 1, "name": "mechanics" } ] }, { "type": "profession", @@ -30,8 +30,8 @@ { "type": "profession", "subtype": "hobby", - "id": "socially_adequate", - "name": "Socially Adequate", + "id": "social_skills", + "name": "Social Skills", "description": "You've spent a significant portion of your life living among other people and are familiar with social norms. You know how to talk with other people, and how to convey your emotions and understand those of others.", "points": 0, "skills": [ { "level": 1, "name": "speech" } ] diff --git a/data/json/profession_groups.json b/data/json/profession_groups.json new file mode 100644 index 0000000000000..5bd16f79565a6 --- /dev/null +++ b/data/json/profession_groups.json @@ -0,0 +1,14 @@ +[ + { + "type": "profession_group", + "id": "adult_basic_background", + "professions": [ + "driving_license", + "simple_home_cooking", + "computer_literate", + "social_skills", + "high_school_graduate", + "mundane_survival" + ] + } +]