mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-11 16:08:32 +01:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user