turbo nutripump, lore notes and minor junk

- calorite research facility has lore notes (plus I added in a lil extra details or items here and there)
- added in the Nutriment Pump TURBO: it will permanently produce a tiny bit of nutriment, slowly fattening whoever has it implanted. It can be made via Nutri-Tech Tools research tree
- feeder's den has fattening turrets now, a beaker of lipoifier and 2 turbo nutripump autosurgeons
- some code cleaning
- added nutripump implant to the uplink
- small tweaks (fixed typos, changed names)
This commit is contained in:
GDLW
2023-05-11 22:25:07 +02:00
parent a9ca3bebb4
commit 31e0a00f9d
14 changed files with 286 additions and 105 deletions
@@ -13,6 +13,8 @@
var/hunger_threshold = NUTRITION_LEVEL_STARVING
var/synthesizing = 0
var/poison_amount = 5
var/nutrition_amount = 50
var/message = "<span class='notice'>You feel less hungry...</span>"
slot = ORGAN_SLOT_STOMACH_AID
/obj/item/organ/cyberimp/chest/nutriment/on_life()
@@ -21,8 +23,8 @@
if(owner.nutrition <= hunger_threshold)
synthesizing = TRUE
to_chat(owner, "<span class='notice'>You feel less hungry...</span>")
owner.nutrition += 50
to_chat(owner, message)
owner.nutrition += nutrition_amount
addtimer(CALLBACK(src, .proc/synth_cool), 50)
/obj/item/organ/cyberimp/chest/nutriment/proc/synth_cool()