Skip to content

Commit

Permalink
Make Sweet Tooth a starting trait (#33477)
Browse files Browse the repository at this point in the history
* Changed Sweet Tooth to be a starting trait

* Added Sweet Tooth starting trait to NPCs

Removed ANTIJUNK from possible starting traits, created a new trait group with both PROJUNK and ANTIJUNK and added that group to possible starting traits. Possibility 5 because of allergy.
  • Loading branch information
ebolite authored and ZhilkinSerg committed Aug 24, 2019
1 parent 6e300c8 commit 5c7083b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions data/json/mutations/mutations.json
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,7 @@
"name": "Sweet Tooth",
"points": 1,
"description": "You have a soft spot for processed foods, and gain a morale bonus from eating them.",
"starting_trait": true,
"cancels": [ "ANTIJUNK" ],
"changes_to": [ "PROJUNK2" ],
"category": [ "MOUSE", "INSECT" ]
Expand Down
8 changes: 7 additions & 1 deletion data/json/npcs/starting_traits.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
{ "group": "trait_group_TOUGH", "prob": 20 },
{ "group": "trait_group_WEAKSCENT", "prob": 10 },
{ "group": "trait_group_PAINRESIST", "prob": 10 },
{ "group": "trait_group_PROJUNK", "prob": 5 },
{ "trait": "DEFT", "prob": 10 },
{ "trait": "DISRESISTANT", "prob": 10 },
{ "trait": "ADRENALINE", "prob": 10 },
Expand All @@ -58,7 +59,6 @@
{ "trait": "MEATARIAN", "prob": 5 },
{ "trait": "HOARDER", "prob": 10 },
{ "trait": "JITTERY", "prob": 10 },
{ "trait": "ANTIJUNK", "prob": 5 },
{ "trait": "LACTOSE", "prob": 10 },
{ "trait": "VEGETARIAN", "prob": 15 },
{ "trait": "MOODSWINGS", "prob": 10 },
Expand Down Expand Up @@ -250,5 +250,11 @@
"id": "trait_group_PAINRESIST",
"subtype": "distribution",
"traits": [ { "trait": "PAINRESIST" }, { "trait": "MORE_PAIN" } ]
},
{
"type": "trait_group",
"id": "trait_group_PROJUNK",
"subtype": "distribution",
"traits": [ { "trait": "PROJUNK" }, { "trait": "ANTIJUNK" } ]
}
]

0 comments on commit 5c7083b

Please sign in to comment.