mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
Unique Vox Heart (#35873)
* gives vox unique hearts * removed redundant defines from heart/vox --------- Co-authored-by: realestestate <>
This commit is contained in:
@@ -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),
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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 |
Reference in New Issue
Block a user