Skip to content
Snippets Groups Projects
Commit 659dbf5a authored by Tristimdorion's avatar Tristimdorion
Browse files

#79 changed performance of weight change serums to have a visible effect after...

#79 changed performance of weight change serums to have a visible effect after an about 60-70 serum turns, bringing them closer to the other body change serums.
parent c2392a7c
No related branches found
Tags 4.0.0-alpha.0
No related merge requests found
......@@ -2,7 +2,7 @@
init -1 python:
def hypothyroidism_serum_on_turn(person, add_to_log):
return person.change_weight(amount = .2, chance = 20)
return person.change_weight(amount = 0.5, chance = 50)
def add_hypothyroidism_serum():
hypothyroidism_serum_trait = SerumTraitMod(name = "Hypothyroidism Trait",
......
......@@ -2,7 +2,7 @@
init -1 python:
def anorexia_serum_on_turn(person, add_to_log):
return person.change_weight(amount = -.2, chance = 20)
return person.change_weight(amount = -0.5, chance = 50)
def add_anorexia_serum():
anorexia_serum_trait = SerumTraitMod(name = "Methabolizer Trait",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment