mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-18 22:22:09 +00:00
Soghun and Tajaran now have differing male and female versions. Fixed some sprite errors with Tajaran dismemberment and mouths.
This commit is contained in:
@@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
if (mutantrace)
|
if (mutantrace)
|
||||||
switch(mutantrace)
|
switch(mutantrace)
|
||||||
if("lizard","golem","metroid")
|
if("golem","metroid")
|
||||||
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat][!lying ? "_s" : "_l"]")
|
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat][!lying ? "_s" : "_l"]")
|
||||||
if(face_standing)
|
if(face_standing)
|
||||||
del(face_standing)
|
del(face_standing)
|
||||||
@@ -66,6 +66,16 @@
|
|||||||
del(stand_icon)
|
del(stand_icon)
|
||||||
if(lying_icon)
|
if(lying_icon)
|
||||||
del(lying_icon)
|
del(lying_icon)
|
||||||
|
if("lizard")
|
||||||
|
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat]_[gender][!lying ? "_s" : "_l"]")
|
||||||
|
if(face_standing)
|
||||||
|
del(face_standing)
|
||||||
|
if(face_lying)
|
||||||
|
del(face_lying)
|
||||||
|
if(stand_icon)
|
||||||
|
del(stand_icon)
|
||||||
|
if(lying_icon)
|
||||||
|
del(lying_icon)
|
||||||
if("plant")
|
if("plant")
|
||||||
if(stat != 2) //if not dead, that is
|
if(stat != 2) //if not dead, that is
|
||||||
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat]_[gender][!lying ? "_s" : "_l"]")
|
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat]_[gender][!lying ? "_s" : "_l"]")
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 20 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@@ -192,3 +192,19 @@ I kind of like the right click only--the window version can get a little confusi
|
|||||||
else
|
else
|
||||||
src << "\green You must be standing on or beside an open air vent to enter it."
|
src << "\green You must be standing on or beside an open air vent to enter it."
|
||||||
return
|
return
|
||||||
|
|
||||||
|
/mob/living/carbon/alien/humanoid/verb/regurgitate()
|
||||||
|
set name = "Regurgitate"
|
||||||
|
set desc = "Empties the contents of your stomach"
|
||||||
|
set category = "Alien"
|
||||||
|
|
||||||
|
if(powerc())
|
||||||
|
if(stomach_contents.len)
|
||||||
|
for(var/mob/M in src)
|
||||||
|
if(M in stomach_contents)
|
||||||
|
stomach_contents.Remove(M)
|
||||||
|
M.loc = loc
|
||||||
|
Paralyse(4)
|
||||||
|
for(var/mob/O in viewers(src, null))
|
||||||
|
O.show_message(text("\green <B>[src] hurls out the contents of their stomach!</B>"), 1)
|
||||||
|
return
|
||||||
@@ -183,19 +183,3 @@
|
|||||||
alien_invis = 0.0
|
alien_invis = 0.0
|
||||||
src << "\green You are no longer invisible."
|
src << "\green You are no longer invisible."
|
||||||
return
|
return
|
||||||
|
|
||||||
/mob/living/carbon/alien/humanoid/hunter/verb/regurgitate()
|
|
||||||
set name = "Regurgitate"
|
|
||||||
set desc = "Empties the contents of your stomach"
|
|
||||||
set category = "Alien"
|
|
||||||
|
|
||||||
if(powerc())
|
|
||||||
if(stomach_contents.len)
|
|
||||||
for(var/mob/M in src)
|
|
||||||
if(M in stomach_contents)
|
|
||||||
stomach_contents.Remove(M)
|
|
||||||
M.loc = loc
|
|
||||||
Paralyse(10)
|
|
||||||
for(var/mob/O in viewers(src, null))
|
|
||||||
O.show_message(text("\green <B>[src] hurls out the contents of their stomach!</B>"), 1)
|
|
||||||
return
|
|
||||||
@@ -873,7 +873,7 @@
|
|||||||
fat = "fat"
|
fat = "fat"
|
||||||
|
|
||||||
if (mutations & HULK)
|
if (mutations & HULK)
|
||||||
overlays += image("icon" = 'genetics.dmi', "icon_state" = "hulk[fat][!lying ? "_s" : "_l"]")
|
overlays += image("icon" = 'genetics.dmi', "icon_state" = "hulk[fat]_[gender][!lying ? "_s" : "_l"]")
|
||||||
|
|
||||||
if (mutations & COLD_RESISTANCE)
|
if (mutations & COLD_RESISTANCE)
|
||||||
overlays += image("icon" = 'genetics.dmi', "icon_state" = "fire[fat][!lying ? "_s" : "_l"]")
|
overlays += image("icon" = 'genetics.dmi', "icon_state" = "fire[fat][!lying ? "_s" : "_l"]")
|
||||||
@@ -886,7 +886,7 @@
|
|||||||
|
|
||||||
if (mutantrace)
|
if (mutantrace)
|
||||||
switch(mutantrace)
|
switch(mutantrace)
|
||||||
if("lizard","golem","metroid")
|
if("golem","metroid")
|
||||||
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat][!lying ? "_s" : "_l"]")
|
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat][!lying ? "_s" : "_l"]")
|
||||||
if(face_standing)
|
if(face_standing)
|
||||||
del(face_standing)
|
del(face_standing)
|
||||||
@@ -896,6 +896,16 @@
|
|||||||
del(stand_icon)
|
del(stand_icon)
|
||||||
if(lying_icon)
|
if(lying_icon)
|
||||||
del(lying_icon)
|
del(lying_icon)
|
||||||
|
if("lizard")
|
||||||
|
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat]_[gender][!lying ? "_s" : "_l"]")
|
||||||
|
if(face_standing)
|
||||||
|
del(face_standing)
|
||||||
|
if(face_lying)
|
||||||
|
del(face_lying)
|
||||||
|
if(stand_icon)
|
||||||
|
del(stand_icon)
|
||||||
|
if(lying_icon)
|
||||||
|
del(lying_icon)
|
||||||
if("plant")
|
if("plant")
|
||||||
if(stat != 2) //if not dead, that is
|
if(stat != 2) //if not dead, that is
|
||||||
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat]_[gender][!lying ? "_s" : "_l"]")
|
overlays += image("icon" = 'genetics.dmi', "icon_state" = "[mutantrace][fat]_[gender][!lying ? "_s" : "_l"]")
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Reference in New Issue
Block a user