Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add mutation to remove healing during sleep. #23294

Merged
merged 2 commits into from Apr 3, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 23 additions & 1 deletion data/json/mutations.json
Expand Up @@ -533,8 +533,30 @@
"points" : -2,
"description" : "You heal a little slower than most; sleeping will heal less lost HP.",
"starting_trait" : true,
"cancels" : ["FASTHEALER"],
"cancels" : ["FASTHEALER", "SLOWHEALER2", "SLOWHEALER3"],
"healing_resting" : -0.0025
},{
"type" : "mutation",
"id" : "SLOWHEALER2",
"name" : "Very Slow Sleep Healing",
"points" : -4,
"description" : "You heal much slower than most; sleeping will heal only one third HP compare to the average person.",
"starting_trait" : true,
"valid": false,
"purifiable": false,
"cancels" : ["SLOWHEALER", "SLOWHEALER3"],
"healing_resting" : -0.0066
},{
"type" : "mutation",
"id" : "SLOWHEALER3",
"name" : "Extremely Slow Sleep Healing",
"points" : -8,
"description" : "You almost cannot recover lost health by sleeping; sleeping will heal only one tenth HP compare to the average person.",
"starting_trait" : true,
"valid": false,
"purifiable": false,
"cancels" : ["SLOWHEALER", "SLOWHEALER2"],
"healing_resting" : -0.009
},{
"type" : "mutation",
"id" : "HYPEROPIC",
Expand Down