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

[Balance] malnutrition does stuff #45564

Closed
wants to merge 10 commits into from
35 changes: 31 additions & 4 deletions data/json/effects.json
Original file line number Diff line number Diff line change
Expand Up @@ -1822,6 +1822,8 @@
"max_intensity": 3,
"rating": "bad",
"blood_analysis_description": "Hypocalcemia"
Copy link
Member

@Venera3 Venera3 Dec 25, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See above. Developing hypocalcemia, meaning lowered blood levels because of low intake just does not happen in real life, unless you have severe chronic GI problems (repeated episodes of pancreatitis or the like ), or kidney failure. Both of those are failure conditions in the postapocalypse, and otherwise tracking calcium intake would only be of consequence if bones get properly implemented.

"base_mods": { "speed_mod": [ -5 ], "str_mod": [ -1 ] },
dissociativity marked this conversation as resolved.
Show resolved Hide resolved
"scaling_mods": { "speed_mod": [ -10 ], "str_mod": [ -1.5 ] }
},
{
"type": "effect_type",
Expand Down Expand Up @@ -1911,7 +1913,9 @@
],
"max_intensity": 3,
"rating": "bad",
"blood_analysis_description": "Vitamin A Deficiency"
"blood_analysis_description": "Vitamin A Deficiency",
"base_mods": { "per_mod": [ -1 ] },
"scaling_mods": { "per_mod": [ -2 ], "int_mod": [ -1 ] }
},
{
"type": "effect_type",
Expand All @@ -1926,13 +1930,16 @@
],
"max_intensity": 3,
"rating": "bad",
"blood_analysis_description": "Vitamin B Deficiency"
"blood_analysis_description": "Vitamin B Deficiency",
"base_mods": { "stamina_min": [ -0.5 ], "hurt_chance": [ 125 ], "hurt_tick": [ 60 ] },
"scaling_mods": { "stamina_min": [ -0.5 ], "hurt_min": [ 1 ], "hurt_chance": [ -25 ] }
},
{
"type": "effect_type",
"id": "scurvy",
"name": [ "Early scurvy", "Scurvy", "Bad Scurvy" ],
"desc": [ "A lack of vitamin C in your diet will result in progressively worse symptoms of scurvy." ],
"miss_messages": [ [ "You body quakes slightly.", 4 ] ],
"apply_message": "You start to develop symptoms of scurvy.",
"remove_message": "Your scurvy has resolved.",
"decay_messages": [
Expand All @@ -1941,7 +1948,16 @@
],
"max_intensity": 3,
"rating": "bad",
"blood_analysis_description": "Scurvy"
"blood_analysis_description": "Scurvy",
"base_mods": { "stamina_min": [ -0.5 ], "pain_min": [ 1 ], "pain_chance": [ 100 ], "pain_tick": [ 50 ] },
"scaling_mods": {
"str_mod": [ -1.5 ],
"per_mod": [ -1 ],
"int_mod": [ -0.5 ],
"dex_mod": [ -1 ],
"stamina_min": [ -1.25 ],
"pain_chance": [ -30 ]
}
},
{
"type": "effect_type",
Expand All @@ -1951,7 +1967,18 @@
"apply_message": "Your metabolism becomes unstable.",
"remove_message": "Your metabolism becomes more stable.",
"rating": "bad",
"blood_analysis_description": "Hypervitaminosis"
"blood_analysis_description": "Hypervitaminosis",
"base_mods": {
"stamina_min": [ -1 ],
"stamina_chance": [ 12 ],
"speed_mod": [ -5 ],
"health_amount": [ -1 ],
"h_mod_amount": [ -1 ],
"thirst_min": [ 1 ],
"thirst_max": [ 2 ],
"thirst_tick": [ 240 ],
"thirst_chance": [ 3 ]
}
},
{
"type": "effect_type",
Expand Down