[MIRROR] /mob/living/proc/Life(delta_time) (#3509)

* /mob/living/proc/Life(delta_time)

* a

Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com>
Co-authored-by: Gandalf2k15 <jzo123@hotmail.com>
This commit is contained in:
SkyratBot
2021-02-19 16:55:52 +00:00
committed by GitHub
co-authored by TemporalOroboros Gandalf2k15
parent b3802820c1
commit d0dc199815
199 changed files with 2975 additions and 2853 deletions
+5 -5
View File
@@ -29,17 +29,17 @@
INVOKE_ASYNC(src, .proc/RemoveInfectionImages, owner)
..()
/obj/item/organ/body_egg/on_death()
/obj/item/organ/body_egg/on_death(delta_time, times_fired)
. = ..()
if(!owner)
return
egg_process()
egg_process(delta_time, times_fired)
/obj/item/organ/body_egg/on_life()
/obj/item/organ/body_egg/on_life(delta_time, times_fired)
. = ..()
egg_process()
egg_process(delta_time, times_fired)
/obj/item/organ/body_egg/proc/egg_process()
/obj/item/organ/body_egg/proc/egg_process(delta_time, times_fired)
return
/obj/item/organ/body_egg/proc/RefreshInfectionImage()
+2 -2
View File
@@ -130,7 +130,7 @@
amount = 6
grind_results = list(/datum/reagent/cellulose = 2)
custom_price = PAYCHECK_ASSISTANT * 2
absorption_rate = 0.25
absorption_rate = 0.125
absorption_capacity = 5
splint_factor = 0.35
merge_type = /obj/item/stack/medical/gauze
@@ -200,7 +200,7 @@
desc = "A roll of cloth roughly cut from something that does a decent job of stabilizing wounds, but less efficiently so than real medical gauze."
self_delay = 6 SECONDS
other_delay = 3 SECONDS
absorption_rate = 0.15
absorption_rate = 0.075
absorption_capacity = 4
merge_type = /obj/item/stack/medical/gauze/improvised
gauze_type = /datum/bodypart_aid/gauze/improvised //SKYRAT EDIT ADDITION - MEDICAL
+1 -1
View File
@@ -35,7 +35,7 @@
var/splint_factor
/// How much blood flow this stack can absorb if used as a bandage on a cut wound, note that absorption is how much we lower the flow rate, not the raw amount of blood we suck up
var/absorption_capacity
/// How quickly we lower the blood flow on a cut wound we're bandaging. Expected lifetime of this bandage in ticks is thus absorption_capacity/absorption_rate, or until the cut heals, whichever comes first
/// How quickly we lower the blood flow on a cut wound we're bandaging. Expected lifetime of this bandage in seconds is thus absorption_capacity/absorption_rate, or until the cut heals, whichever comes first
var/absorption_rate
/// Amount of matter for RCD
var/matter_amount = 0