From 7d5618fee44be3d16637892e17cef714793e9499 Mon Sep 17 00:00:00 2001 From: Rusty Date: Sat, 30 Nov 2024 06:52:44 -0800 Subject: [PATCH 01/11] changed bug report template from md to yaml --- .github/ISSUE_TEMPLATE/bug_report.yml | 71 +++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000000..4baaf885df --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,71 @@ +name: Bug report +about: Create a report to help us improve +title: "[BUG] " +body: + - type: dropdown + id: type + attributes: + label: Type of bug + description: What kind of issue are you experiencing? + options: + - Please choose an option... + - UI - anything to do with the user interface. maybe a button is not working, or the way some assets are formatted seems to be off. + - Sprite - an issue with the art in the game + - Audio - issues related to the audio system + - Code - general bugs related to how the game runs and responds to you. + - "Typo - misspellings or incorrect grammar - IMPORTANT: this type of \"bugs\" are collected here: https://github.com/ClanGenOfficial/clangen/issues/1818" + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: Describe the bug + placeholder: "ex.: This bug implies that the cat is never..." + validations: + required: true + - type: dropdown + id: grade + attributes: + label: Grade + description: How much of an impact does this issue have on play? + options: + - Game-breaking - a bug that makes it impossible to play the game + - Dire - Still playable, but a major feature is broken + - Important - The bug has a large effect on the gameplay but is not urgent + - Regular - A typical bug that should be seen too soon, but doesn't necessarily break the game or inhibit the player + - Non-vital - This bug can easily be ignored and does not have a large impact on play + - Unimportant - This bug has little to no impact on play. + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: Steps to reproduce the behavior + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + id: patrol + attributes: + label: Patrol ID + Outcome Print (if applicable) + - type: input + id: version + attributes: + label: "Commit # or Game Version Number" + validations: + required: true + - type: textarea + id: additional_context + attributes: + label: Additional context + description: Add any other context about the problem here. + - type: textarea + id: screenshots + attributes: + label: Additional context + description: If applicable, add screenshots to help explain your problem. From d21ce22516adfe8e5a44493506b4e46f08496552 Mon Sep 17 00:00:00 2001 From: Rusty Date: Sat, 30 Nov 2024 06:55:46 -0800 Subject: [PATCH 02/11] grammar fix --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 4baaf885df..6b61792454 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -13,7 +13,7 @@ body: - Sprite - an issue with the art in the game - Audio - issues related to the audio system - Code - general bugs related to how the game runs and responds to you. - - "Typo - misspellings or incorrect grammar - IMPORTANT: this type of \"bugs\" are collected here: https://github.com/ClanGenOfficial/clangen/issues/1818" + - "Typo - misspellings or incorrect grammar - IMPORTANT: \"bugs\" of this type are collected here: https://github.com/ClanGenOfficial/clangen/issues/1818" validations: required: true - type: textarea From 7bf74361258a59e3a8814f7cb7e9c2cd55a843df Mon Sep 17 00:00:00 2001 From: Rusty Date: Sat, 30 Nov 2024 07:50:17 -0800 Subject: [PATCH 03/11] deleted bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 43 ---------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 78adb401af..0000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG] " -labels: '' -assignees: '' - ---- - -**Type**: (only select one) -- UI - anything to do with the user interface. maybe a button is not working, or the way some assets are formatted seems to be off. -- Sprite - an issue with the art in the game -- Audio - issues related to the audio system -- Code - general bugs related to how the game runs and responds to you. -- Typo - misspellings or incorrect grammar - IMPORTANT: this type of "bugs" are collected here: https://github.com/ClanGenOfficial/clangen/issues/1818 - -**Describe the bug** -ex.: This bug implies that the cat is never... - -**Grade**: (only select one) -- Game-breaking - a bug that makes it impossible to play the game -- Dire - Still playable, but a major feature is broken -- Important - The bug has a large effect on the gameplay but is not urgent -- Regular - A typical bug that should be seen too soon, but doesn’t necessarily break the game or inhibit the player -- Non-vital - This bug can easily be ignored and does not have a large impact on play -- Unimportant - This bug has little to no impact on play. - -**Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Patrol ID + Outcome Print (if applicable)**: - -**Commit # or Game Version Number**: - -**Additional context** -Add any other context about the problem here. - -**Screenshots** -If applicable, add screenshots to help explain your problem. From 14d90c0299ea5f6c533afc3c362678f199e6fd13 Mon Sep 17 00:00:00 2001 From: Rusty Date: Sat, 30 Nov 2024 07:55:38 -0800 Subject: [PATCH 04/11] about -> description --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 6b61792454..9febc75c60 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,5 +1,5 @@ name: Bug report -about: Create a report to help us improve +description: Create a report to help us improve title: "[BUG] " body: - type: dropdown From bec20379a3862d91a8eef5b6e6e6ddd91614138c Mon Sep 17 00:00:00 2001 From: Rusty Date: Sat, 30 Nov 2024 07:59:26 -0800 Subject: [PATCH 05/11] lint bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9febc75c60..3486920d37 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -13,7 +13,7 @@ body: - Sprite - an issue with the art in the game - Audio - issues related to the audio system - Code - general bugs related to how the game runs and responds to you. - - "Typo - misspellings or incorrect grammar - IMPORTANT: \"bugs\" of this type are collected here: https://github.com/ClanGenOfficial/clangen/issues/1818" + - 'Typo - misspellings or incorrect grammar - IMPORTANT: "bugs" of this type are collected here: https://github.com/ClanGenOfficial/clangen/issues/1818' validations: required: true - type: textarea From 48cd3006046a14620acbb51dd48b0a65246a9d1c Mon Sep 17 00:00:00 2001 From: Rusty Date: Sat, 30 Nov 2024 14:55:06 -0800 Subject: [PATCH 06/11] fixed label --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 3486920d37..e59c694825 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -67,5 +67,5 @@ body: - type: textarea id: screenshots attributes: - label: Additional context + label: Screenshots description: If applicable, add screenshots to help explain your problem. From a4a387fb6531469154048db38637dd597fc4a50d Mon Sep 17 00:00:00 2001 From: Rusty Date: Sat, 30 Nov 2024 14:56:49 -0800 Subject: [PATCH 07/11] grammar --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e59c694825..9157a312d2 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -9,7 +9,7 @@ body: description: What kind of issue are you experiencing? options: - Please choose an option... - - UI - anything to do with the user interface. maybe a button is not working, or the way some assets are formatted seems to be off. + - UI - anything to do with the user interface - maybe a button is not working, or the way some assets are formatted seems to be off. - Sprite - an issue with the art in the game - Audio - issues related to the audio system - Code - general bugs related to how the game runs and responds to you. From 0c907e7b42f4ee84c8f240523c2860a8e018a023 Mon Sep 17 00:00:00 2001 From: Rusty Date: Sat, 30 Nov 2024 14:59:12 -0800 Subject: [PATCH 08/11] change descriptions to placeholders and add patrol print placeholder --- .github/ISSUE_TEMPLATE/bug_report.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9157a312d2..30e1da173e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -53,6 +53,7 @@ body: id: patrol attributes: label: Patrol ID + Outcome Print (if applicable) + placeholder: If you don't know what this means, you probably don't need to fill it out. - type: input id: version attributes: @@ -63,9 +64,9 @@ body: id: additional_context attributes: label: Additional context - description: Add any other context about the problem here. + placeholder: Add any other context about the problem here. - type: textarea id: screenshots attributes: label: Screenshots - description: If applicable, add screenshots to help explain your problem. + placeholder: If applicable, add screenshots to help explain your problem. From 25dc1a447766f7e56a53769be7e4d7c6e5c6c2c5 Mon Sep 17 00:00:00 2001 From: Rusty Date: Sat, 30 Nov 2024 15:02:41 -0800 Subject: [PATCH 09/11] added "please choose an option" option to grade --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 30e1da173e..04e83b467c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -30,6 +30,7 @@ body: label: Grade description: How much of an impact does this issue have on play? options: + - Please choose an option... - Game-breaking - a bug that makes it impossible to play the game - Dire - Still playable, but a major feature is broken - Important - The bug has a large effect on the gameplay but is not urgent From 6c56581af03372b8cd5976e36aeca4f55f21ca5d Mon Sep 17 00:00:00 2001 From: Rusty Date: Sun, 1 Dec 2024 11:47:45 -0800 Subject: [PATCH 10/11] fixed typo --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 04e83b467c..57e76c842f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -34,7 +34,7 @@ body: - Game-breaking - a bug that makes it impossible to play the game - Dire - Still playable, but a major feature is broken - Important - The bug has a large effect on the gameplay but is not urgent - - Regular - A typical bug that should be seen too soon, but doesn't necessarily break the game or inhibit the player + - Regular - A typical bug that should be seen to soon, but doesn't necessarily break the game or inhibit the player - Non-vital - This bug can easily be ignored and does not have a large impact on play - Unimportant - This bug has little to no impact on play. validations: From 0f4bcd555d869fa99846d91cf5109fbb047348f5 Mon Sep 17 00:00:00 2001 From: Morgan Baker Date: Mon, 2 Dec 2024 02:20:17 -0600 Subject: [PATCH 11/11] added can_have_stat attribute to patrols that reference both p_l and s_c --- resources/dicts/patrols/general/border.json | 5 +++- resources/dicts/patrols/general/hunting.json | 4 +++- resources/dicts/patrols/general/training.json | 24 +++++++++++++++++++ 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/resources/dicts/patrols/general/border.json b/resources/dicts/patrols/general/border.json index 0edc1e2272..d88de06d9c 100644 --- a/resources/dicts/patrols/general/border.json +++ b/resources/dicts/patrols/general/border.json @@ -233,6 +233,7 @@ "art": "gen_coyote_danger2_w1", "stat_trait": [ "playful", "childish", "strange" ], + "can_have_stat": ["r_c"], "relationships": [ { "cats_to": ["s_c"], @@ -832,6 +833,7 @@ "weight": 5, "art": "gen_bord_patrolwoundedlonerrescue", "stat_trait": [ "childish", "playful", "strange" ], + "can_have_stat": ["r_c"], "relationships": [ { "cats_to": ["patrol"], @@ -1576,7 +1578,8 @@ "weight": 10, "stat_skill": [ "KITTYPET,0", - "LONER,0"] + "LONER,0"], + "can_have_stat": ["r_c"] }, { "text": "The patrol nervously heads towards the unblinking eyes, unsure of what lies ahead. As the strange object comes into view, s_c begins to bristle with unease. {PRONOUN/s_c/subject/CAP} can see strange, mist-like Twolegs floating around the glowing, unblinking face of a... pumpkin? The figures approach s_c, and run their cold, fur-less paws through {PRONOUN/s_c/subject} fur. s_c can hardly hear r_c asking {PRONOUN/s_c/object} why {PRONOUN/s_c/subject}{VERB/s_c/'re/'s} frozen in place.", diff --git a/resources/dicts/patrols/general/hunting.json b/resources/dicts/patrols/general/hunting.json index d2385c3dd9..e3227587d9 100644 --- a/resources/dicts/patrols/general/hunting.json +++ b/resources/dicts/patrols/general/hunting.json @@ -182,6 +182,7 @@ "exp": 0, "weight": 20, "stat_trait": ["childish", "playful" ], + "can_have_stat": ["not_pl_rc"], "prey": ["very_small"], "injury": [ { @@ -1251,7 +1252,8 @@ "text": "r_c kills the distracted rat easily, but p_l points out the putrid scent. c_n could use the prey, but it isn't safe to risk sickness. s_c cocks {PRONOUN/s_c/poss} head. If they aren't going to eat it, can they at least name it? Before p_l can figure out how to reply to that, s_c touches {PRONOUN/s_c/poss} nose to the body of the rat. Henceforth, this rat will be known as Stinkyrat, honored for its stinkiness. Stinkyrat! Stinkyrat!", "exp": 30, "weight": 10, - "stat_trait": ["childish", "playful" ] + "stat_trait": ["childish", "playful" ], + "can_have_stat": ["r_c"] } ], "fail_outcomes": [ diff --git a/resources/dicts/patrols/general/training.json b/resources/dicts/patrols/general/training.json index ccddc01fad..acaa6b68ce 100644 --- a/resources/dicts/patrols/general/training.json +++ b/resources/dicts/patrols/general/training.json @@ -544,6 +544,7 @@ "ambitious", "grumpy" ], + "can_have_stat": ["r_c"], "relationships": [ { "cats_to": ["p_l"], @@ -3848,6 +3849,7 @@ "exp": 20, "weight": 20, "stat_skill": ["SPEAKER,1"], + "can_have_stat": ["r_c"], "relationships": [ { "cats_to": ["patrol"], @@ -3877,6 +3879,7 @@ "exp": 20, "weight": 20, "stat_skill": ["MEDIATOR,1"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": ["patrol"], @@ -3906,6 +3909,7 @@ "exp": 20, "weight": 20, "stat_skill": ["CLEVER,1"], + "can_have_stat": ["r_c"], "relationships": [ { "cats_to": ["patrol"], @@ -3928,6 +3932,7 @@ "exp": 20, "weight": 20, "stat_skill": ["INSIGHTFUL,1"], + "can_have_stat": ["r_c"], "relationships": [ { "cats_to": ["patrol"], @@ -3957,6 +3962,7 @@ "exp": 20, "weight": 20, "stat_skill": ["HEALER,1"], + "can_have_stat": ["r_c"], "injury": [ { "cats": ["p_l"], @@ -4013,6 +4019,7 @@ "arrogant", "ambitious" ], + "can_have_stat": ["r_c"], "relationships": [ { "cats_to": ["s_c"], @@ -4474,6 +4481,7 @@ "arrogant", "ambitious" ], + "can_have_stat": ["r_c"], "relationships": [ { "cats_to": ["s_c"], @@ -12081,6 +12089,7 @@ "exp": 5, "weight": 20, "stat_trait": ["troublesome", "lonesome", "fierce", "bloodthirsty", "cold", "childish", "playful", "charismatic", "bold", "daring", "nervous", "righteous", "insecure", "strict", "compassionate", "thoughtful", "ambitious", "confident", "adventurous", "calm", "careful", "faithful", "loving", "loyal", "responsible", "shameless", "sneaky", "strange", "vengeful", "wise", "arrogant", "competitive", "grumpy", "cunning", "oblivious", "gloomy", "sincere", "flamboyant", "rebellious"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": ["patrol"], @@ -12097,6 +12106,7 @@ "exp": 5, "weight": 20, "stat_trait": ["troublesome", "lonesome", "fierce", "bloodthirsty", "cold", "childish", "playful", "charismatic", "bold", "daring", "nervous", "righteous", "insecure", "strict", "compassionate", "thoughtful", "ambitious", "confident", "adventurous", "calm", "careful", "faithful", "loving", "loyal", "responsible", "shameless", "sneaky", "strange", "vengeful", "wise", "arrogant", "competitive", "grumpy", "cunning", "oblivious", "gloomy", "sincere", "flamboyant", "rebellious"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": ["patrol"], @@ -12113,6 +12123,7 @@ "exp": 5, "weight": 20, "stat_trait": ["troublesome", "lonesome", "fierce", "bloodthirsty", "cold", "childish", "playful", "charismatic", "bold", "daring", "nervous", "righteous", "insecure", "strict", "compassionate", "thoughtful", "ambitious", "confident", "adventurous", "calm", "careful", "faithful", "loving", "loyal", "responsible", "shameless", "sneaky", "strange", "vengeful", "wise", "arrogant", "competitive", "grumpy", "cunning", "oblivious", "gloomy", "sincere", "flamboyant", "rebellious"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": ["patrol"], @@ -12136,6 +12147,7 @@ "exp": 10, "weight": 40, "stat_trait": [ "bloodthirsty", "arrogant", "ambitious", "confident", "sneaky", "cunning", "fierce", "competitive" ], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "patrol" ], @@ -12160,6 +12172,7 @@ "weight": 40, "stat_trait": [ "bloodthirsty", "adventurous", "arrogant", "ambitious", "confident", "fierce", "competitive" ], "stat_skill": [ "FIGHTER,2"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "patrol" ], @@ -12184,6 +12197,7 @@ "weight": 40, "stat_trait": [ "wise", "thoughtful", "calm", "careful", "lonesome" ], "stat_skill": [ "FIGHTER,2"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "patrol" ], @@ -12208,6 +12222,7 @@ "weight": 40, "stat_trait": [ "cunning", "sneaky", "shameless", "flamboyant", "charismatic", "daring", "bold" ], "stat_skill": [ "FIGHTER,1"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "patrol" ], @@ -12232,6 +12247,7 @@ "weight": 40, "stat_trait": [ "charismatic", "loving", "compassionate", "loyal", "faithful", "cunning", "thoughtful", "sincere" ], "stat_skill": [ "FIGHTER,2"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "patrol" ], @@ -12256,6 +12272,7 @@ "weight": 40, "stat_trait": [ "cunning", "sneaky", "cold", "lonesome", "grumpy", "gloomy", "strict", "strange", "insecure", "nervous" ], "stat_skill": [ "FIGHTER,2"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "patrol" ], @@ -12280,6 +12297,7 @@ "weight": 40, "stat_trait": [ "gloomy", "lonesome", "insecure", "nervous" ], "stat_skill": [ "FIGHTER,2"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "patrol" ], @@ -12303,6 +12321,7 @@ "exp": 10, "weight": 40, "stat_skill": [ "CLAIRVOYANT,1"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "patrol" ], @@ -12328,6 +12347,7 @@ "exp": 0, "weight": 40, "stat_trait": [ "childish"], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "s_c" ], @@ -12353,6 +12373,7 @@ "stat_trait": [ "troublesome", "lonesome", "cold", "childish", "playful", "charismatic", "bold", "daring", "nervous", "righteous", "insecure", "strict", "compassionate", "thoughtful", "confident", "calm", "careful", "faithful", "loving", "loyal", "responsible", "shameless", "sneaky", "strange", "vengeful", "wise", "arrogant", "competitive", "grumpy", "cunning", "oblivious", "gloomy", "sincere", "flamboyant", "rebellious" ], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "s_c" ], @@ -12371,6 +12392,7 @@ "stat_trait": [ "troublesome", "lonesome", "fierce", "bloodthirsty", "cold", "childish", "playful", "charismatic", "bold", "daring", "nervous", "righteous", "insecure", "strict", "compassionate", "thoughtful", "ambitious", "confident", "adventurous", "calm", "careful", "faithful", "loving", "loyal", "responsible", "shameless", "sneaky", "strange", "vengeful", "wise", "arrogant", "competitive", "grumpy", "cunning", "oblivious", "gloomy", "sincere", "flamboyant", "rebellious" ], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "p_l", "r_c" ], @@ -12396,6 +12418,7 @@ "stat_trait": [ "troublesome", "lonesome", "fierce", "bloodthirsty", "cold", "childish", "bold", "daring", "righteous", "insecure", "strict", "ambitious", "confident", "adventurous", "faithful", "loyal", "shameless", "sneaky", "strange", "vengeful", "arrogant", "competitive", "grumpy", "gloomy", "sincere", "flamboyant", "rebellious" ], + "can_have_stat": ["not_pl_rc"], "relationships": [ { "cats_to": [ "p_l", "r_c" ], @@ -12443,6 +12466,7 @@ "stat_trait": [ "troublesome", "lonesome", "fierce", "bloodthirsty", "cold", "childish", "bold", "daring", "righteous", "insecure", "strict", "ambitious", "confident", "adventurous", "faithful", "loyal", "shameless", "sneaky", "strange", "vengeful", "arrogant", "competitive", "grumpy", "gloomy", "sincere", "flamboyant", "rebellious" ], + "can_have_stat": ["not_pl_rc"], "injury": [ { "cats": [ "p_l" ],