diff --git a/code/modules/mob/abstract/new_player/sprite_accessories.dm b/code/modules/mob/abstract/new_player/sprite_accessories.dm index ef2ac94b4f2..3170848dca2 100644 --- a/code/modules/mob/abstract/new_player/sprite_accessories.dm +++ b/code/modules/mob/abstract/new_player/sprite_accessories.dm @@ -1079,6 +1079,35 @@ name = "Quill Mohawk" icon_state = "vox_mohawk" +//vaurca antennae + + vaurca_classic + icon = 'icons/mob/human_face/vaurca_hair.dmi' + name = "Classic Antennae" + icon_state = "vaurca_classic" + species_allowed = list("Vaurca") + gender = NEUTER + + vaurca_mid + name = "Mid Length Antennae" + icon_state = "vaurca_mid" + + vaurca_fla + name = "Floor Length Antennae" + icon_state = "vaurca_fla" + + vaurca_droop + name = "Droopy Antennae" + icon_state = "vaurca_droop" + + vaurca_zappy + name = "Zappy Antennae" + icon_state = "vaurca_zappy" + + vaurca_braided + name = "Braided Antennae" + icon_state = "vaurca_braided" + /datum/sprite_accessory/facial_hair taj_sideburns icon = 'icons/mob/human_face/tajara_facial_hair.dmi' @@ -1316,7 +1345,6 @@ body_parts = list("chest") species_allowed = list("Unathi") - // Branded IPC markings - disabled for now, some layering issues. /* bishop diff --git a/code/modules/mob/living/carbon/human/species/station/station.dm b/code/modules/mob/living/carbon/human/species/station/station.dm index f631347fb12..f73d0c1f815 100644 --- a/code/modules/mob/living/carbon/human/species/station/station.dm +++ b/code/modules/mob/living/carbon/human/species/station/station.dm @@ -700,7 +700,7 @@ datum/species/machine/handle_post_spawn(var/mob/living/carbon/human/H) and otherwise, and acts as a pressure-suit to seal their soft inner core from the outside world. This allows most Type A Vaurca to have extended EVA \ expeditions, assuming they have internals. They are bipedal, and compared to warriors they are better suited for EVA and environments, and more resistant to brute force thanks to their \ thicker carapace, but also a fair bit slower and less agile. \ - Type A comfortable in any department except security. There will almost never be a Worker in a security position, as they are as a type disposed against combat." + Type A are comfortable in any department except security. There will almost never be a Worker in a security position, as they are as a type disposed against combat." cold_level_1 = 50 cold_level_2 = -1 @@ -711,7 +711,7 @@ datum/species/machine/handle_post_spawn(var/mob/living/carbon/human/H) heat_level_3 = 600 //Default 1000 flags = NO_SLIP | NO_CHUBBY spawn_flags = CAN_JOIN | IS_WHITELISTED - appearance_flags = HAS_SKIN_COLOR + appearance_flags = HAS_SKIN_COLOR | HAS_HAIR_COLOR blood_color = "#E6E600" // dark yellow flesh_color = "#E6E600" base_color = "#575757" @@ -749,6 +749,8 @@ datum/species/machine/handle_post_spawn(var/mob/living/carbon/human/H) "eyes" = /obj/item/organ/eyes/vaurca ) + default_h_style = "Classic Antennae" + move_trail = /obj/effect/decal/cleanable/blood/tracks/claw /datum/species/bug/equip_survival_gear(var/mob/living/carbon/human/H) diff --git a/html/changelogs/paradoxspace-hugabug.yml b/html/changelogs/paradoxspace-hugabug.yml new file mode 100644 index 00000000000..3639a8c9d77 --- /dev/null +++ b/html/changelogs/paradoxspace-hugabug.yml @@ -0,0 +1,37 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +################################# + +# Your name. +author: ParadoxSpace + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds a few new Vaurca antennae sprites." diff --git a/icons/mob/human_face/vaurca_hair.dmi b/icons/mob/human_face/vaurca_hair.dmi new file mode 100644 index 00000000000..3bc4443a8ff Binary files /dev/null and b/icons/mob/human_face/vaurca_hair.dmi differ diff --git a/icons/mob/human_races/r_vaurca.dmi b/icons/mob/human_races/r_vaurca.dmi index b77452ecd7a..827199dbcfa 100644 Binary files a/icons/mob/human_races/r_vaurca.dmi and b/icons/mob/human_races/r_vaurca.dmi differ