enjoy being fat with quirks!

This commit is contained in:
DragonTrance
2021-02-23 13:46:07 -07:00
parent 700b22988f
commit 15094b8b12
4 changed files with 24 additions and 3 deletions
+7
View File
@@ -57,3 +57,10 @@
/datum/quirk/xenospeaker/remove()
if(quirk_holder)
quirk_holder.remove_language(/datum/language/ratvar)
/datum/quirk/fat_enjoyer
name = "Fat Enjoyer"
desc = "You don't particularly mind being fat compared to some people, and have grown used to feeling a bit plump."
value = 1
gain_text = "<span class='notice'>You enjoy fat more than some people.</span>"
lose_text = "<span class='notice'>Your views towards being overweight has changed.</span>"
@@ -34,3 +34,14 @@
mob_trait = TRAIT_HEAT
gain_text = "<span class='notice'>You body burns with the desire to be bred.</span>"
lose_text = "<span class='notice'>You feel more in control of your body and thoughts.</span>"
/datum/quirk/overweight
name = "Overweight"
desc = "You're particularly fond of food, and join the round being overweight."
value = 0
gain_text = "<span class='notice'>You feel a bit chubby!</span>"
//no lose_text cause why would there be?
/datum/quirk/overweight/on_spawn()
var/mob/living/M = quirk_holder
M.nutrition = rand(NUTRITION_LEVEL_FAT + NUTRITION_LEVEL_START_MIN, NUTRITION_LEVEL_FAT + NUTRITION_LEVEL_START_MAX)