Unique Vox Heart (#35873)

* gives vox unique hearts

* removed redundant defines from heart/vox

---------

Co-authored-by: realestestate <>
This commit is contained in:
RealestEstate
2024-02-02 14:14:48 -08:00
committed by GitHub
parent 1f644ef8cb
commit 34da0bf6a2
5 changed files with 14 additions and 1 deletions

View File

@@ -23,6 +23,7 @@
var/list/products = list(
"heart" = list(/obj/item/organ/internal/heart, 50),
"insectoid heart" = list(/obj/item/organ/internal/heart/insectoid, 50),
"vox heart" = list(/obj/item/organ/internal/heart/vox, 50),
"human lungs" = list(/obj/item/organ/internal/lungs, 30),
"vox lungs" = list(/obj/item/organ/internal/lungs/vox, 30),
"plasmaman lungs" = list(/obj/item/organ/internal/lungs/plasmaman, 30),

View File

@@ -779,7 +779,7 @@ var/global/list/playable_species = list("Human")
has_mutant_race = 0
has_organ = list(
"heart" = /datum/organ/internal/heart,
"heart" = /datum/organ/internal/heart/vox,
"lungs" = /datum/organ/internal/lungs/vox,
"liver" = /datum/organ/internal/liver,
"kidneys" = /datum/organ/internal/kidney,

View File

@@ -20,6 +20,13 @@
organ_type = "heart"
removed_type = /obj/item/organ/internal/heart/insectoid
/datum/organ/internal/heart/vox
name = "vox heart"
parent_organ = LIMB_CHEST
organ_type = "heart"
removed_type = /obj/item/organ/internal/heart/vox
/datum/organ/internal/heart/cell/New()
..()
if(!cell)

View File

@@ -165,6 +165,11 @@
dead_icon = "insectoid-heart-off"
organ_type = /datum/organ/internal/heart
/obj/item/organ/internal/heart/vox
name = "vox heart"
icon_state = "vox-heart-on"
dead_icon = "vox-heart-off"
/obj/item/organ/internal/heart/cell
name = "biocharger"
icon_state = "heart-cell"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB