Adds unique Unathi organ Sprites (#12734)

This commit is contained in:
Dekserrrrrr
2021-11-12 04:00:22 +04:00
committed by GitHub
parent 211793b3ac
commit d25fd355c5
5 changed files with 45 additions and 0 deletions
+1
View File
@@ -2492,6 +2492,7 @@
#include "code\modules\organs\internal\stomach.dm"
#include "code\modules\organs\internal\species\diona.dm"
#include "code\modules\organs\internal\species\tajara.dm"
#include "code\modules\organs\internal\species\unathi.dm"
#include "code\modules\organs\internal\species\vaurca.dm"
#include "code\modules\organs\subtypes\augment.dm"
#include "code\modules\organs\subtypes\autakh.dm"
@@ -99,6 +99,16 @@
"Your scales bristle against the cold."
)
has_organ = list(
BP_BRAIN = /obj/item/organ/internal/brain/unathi,
BP_HEART = /obj/item/organ/internal/heart/unathi,
BP_LIVER = /obj/item/organ/internal/liver/unathi,
BP_LUNGS = /obj/item/organ/internal/lungs/unathi,
BP_KIDNEYS = /obj/item/organ/internal/kidneys/unathi,
BP_STOMACH = /obj/item/organ/internal/stomach/unathi,
BP_EYES = /obj/item/organ/internal/eyes/unathi
)
pain_emotes_with_pain_level = list(
list(/decl/emote/audible/wheeze, /decl/emote/audible/roar, /decl/emote/audible/bellow) = 80,
list(/decl/emote/audible/grunt, /decl/emote/audible/groan, /decl/emote/audible/wheeze, /decl/emote/audible/hiss) = 50,
@@ -0,0 +1,28 @@
/obj/item/organ/internal/stomach/unathi
name = "massive gizzard"
desc = "A much larger stomach than what humans have. Looks to belong to a carnivore."
icon_state = "unathi_stomach"
/obj/item/organ/internal/brain/unathi
icon_state = "unathi_brain"
/obj/item/organ/internal/lungs/unathi
name = "large lungs"
desc = "A pair of two large lungs belonging to Unathi, similar in appearance to yet much larger than Human lungs."
icon_state = "unathi_lungs"
/obj/item/organ/internal/heart/unathi
name = "large heart"
desc = "A single large heart almost triple the size of your hand, used to effectively pump blood throughout a body without transporting much heat. It looks to have only one ventricle."
icon_state = "unathi_heart"
/obj/item/organ/internal/liver/unathi
icon_state = "unathi_liver"
/obj/item/organ/internal/kidneys/unathi
icon_state = "unathi_kidneys"
/obj/item/organ/internal/eyes/unathi
name = "reptilian eyes"
desc = "A pair of reptilian eyes. The pupil is slit and never dialating; you can almost feel it staring at you."
icon_state = "unathi_eyes"
@@ -0,0 +1,6 @@
author: dekser
delete-after: True
changes:
- rscadd: "Added unique sprites for Unathi organs."
Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 61 KiB