Heart Disease 2: Electric Boogaloo (#35296)

* Heart Disease 2: Electric Boogaloo

* Upd8
This commit is contained in:
MoreRobustThanYou
2018-02-08 04:01:55 -05:00
committed by CitadelStationBot
parent 592a527c24
commit 9c957f5a0b
11 changed files with 114 additions and 3 deletions
+2
View File
@@ -149,6 +149,7 @@
name = "cybernetic heart"
desc = "An electronic device designed to mimic the functions of an organic human heart. Offers no benefit over an organic heart other than being easy to make."
icon_state = "heart-c"
synthetic = TRUE
/obj/item/organ/heart/cybernetic/emp_act()
Stop()
@@ -156,6 +157,7 @@
/obj/item/organ/heart/freedom
name = "heart of freedom"
desc = "This heart pumps with the passion to give... something freedom."
synthetic = TRUE //the power of freedom prevents heart attacks
var/min_next_adrenaline = 0
/obj/item/organ/heart/freedom/on_life()
+1
View File
@@ -67,6 +67,7 @@
name = "cybernetic liver"
icon_state = "liver-c"
desc = "An electronic device designed to mimic the functions of a human liver. It has no benefits over an organic liver, but is easy to produce."
synthetic = TRUE
/obj/item/organ/liver/cybernetic/upgraded
name = "upgraded cybernetic liver"
+1
View File
@@ -359,6 +359,7 @@
name = "cybernetic lungs"
desc = "A cybernetic version of the lungs found in traditional humanoid entities. It functions the same as an organic lung and is merely meant as a replacement."
icon_state = "lungs-c"
synthetic = TRUE
/obj/item/organ/lungs/cybernetic/emp_act()
owner.losebreath = 20
@@ -11,6 +11,7 @@
var/vital = 0
//Was this organ implanted/inserted/etc, if true will not be removed during species change.
var/external = FALSE
var/synthetic = FALSE // To distinguish between organic and synthetic organs
/obj/item/organ/proc/Insert(mob/living/carbon/M, special = 0, drop_if_replaced = TRUE)