diff --git a/code/game/gamemodes/cult/cult_items.dm b/code/game/gamemodes/cult/cult_items.dm index afb8ceed0d8..15d24fb14f5 100644 --- a/code/game/gamemodes/cult/cult_items.dm +++ b/code/game/gamemodes/cult/cult_items.dm @@ -126,6 +126,7 @@ item_state = "cult_helmet" armor = list(MELEE = 115, BULLET = 50, LASER = 20, ENERGY = 10, BOMB = 20, BIO = 20, RAD = 20, FIRE = 35, ACID = 150) magical = TRUE + sprite_sheets = list("Vox" = 'icons/mob/clothing/species/vox/head.dmi') /obj/item/clothing/suit/space/cult name = "cult armor" @@ -137,6 +138,7 @@ slowdown = 1 armor = list(MELEE = 115, BULLET = 50, LASER = 20, ENERGY = 10, BOMB = 20, BIO = 20, RAD = 20, FIRE = 35, ACID = 150) magical = TRUE + sprite_sheets = list("Vox" = 'icons/mob/clothing/species/vox/suit.dmi') /obj/item/clothing/suit/hooded/cultrobes/cult_shield name = "empowered cultist robes" diff --git a/code/modules/clothing/head/collectable.dm b/code/modules/clothing/head/collectable.dm index b343f461d59..d3ed7059273 100644 --- a/code/modules/clothing/head/collectable.dm +++ b/code/modules/clothing/head/collectable.dm @@ -50,6 +50,7 @@ icon_state = "captain" item_state = "caphat" dog_fashion = /datum/dog_fashion/head/captain + sprite_sheets = list("Vox" = 'icons/mob/clothing/species/vox/head.dmi') /obj/item/clothing/head/collectable/police name = "collectable police officer's hat" diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index 20116f51ef9..0374ae2dc1a 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -23,6 +23,7 @@ armor = list(MELEE = 15, BULLET = 10, LASER = 15, ENERGY = 5, BOMB = 15, BIO = 0, RAD = 0, FIRE = 50, ACID = 50) strip_delay = 60 dog_fashion = /datum/dog_fashion/head/captain + sprite_sheets = list("Vox" = 'icons/mob/clothing/species/vox/head.dmi') //Captain: no longer space-worthy /obj/item/clothing/head/caphat/parade diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 774ce696135..1c57e4b7511 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -367,6 +367,7 @@ desc = "A mask made of soft vinyl and latex, representing the head of a bee." icon_state = "bee" item_state = "bee" + sprite_sheets = list("Vox" = 'icons/mob/clothing/species/vox/mask.dmi') /obj/item/clothing/mask/face/bear name = "bear mask" diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index ec9f773414e..d5ae473f000 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -329,6 +329,7 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS flags = THICKMATERIAL hoodtype = /obj/item/clothing/head/hooded/bee_hood + sprite_sheets = list("Vox" = 'icons/mob/clothing/species/vox/suit.dmi') /obj/item/clothing/head/hooded/bee_hood name = "bee hood" @@ -337,6 +338,7 @@ body_parts_covered = HEAD flags = THICKMATERIAL|BLOCKHAIR flags_inv = HIDEEARS + sprite_sheets = list("Vox" = 'icons/mob/clothing/species/vox/head.dmi') /obj/item/clothing/suit/bloated_human //OH MY GOD WHAT HAVE YOU DONE!?!?!? name = "bloated human suit" diff --git a/icons/mob/clothing/species/vox/head.dmi b/icons/mob/clothing/species/vox/head.dmi index 2c5f1fea736..c378bb8388d 100644 Binary files a/icons/mob/clothing/species/vox/head.dmi and b/icons/mob/clothing/species/vox/head.dmi differ diff --git a/icons/mob/clothing/species/vox/mask.dmi b/icons/mob/clothing/species/vox/mask.dmi index 4ea161e5bbb..d4c493f5ab7 100644 Binary files a/icons/mob/clothing/species/vox/mask.dmi and b/icons/mob/clothing/species/vox/mask.dmi differ diff --git a/icons/mob/clothing/species/vox/suit.dmi b/icons/mob/clothing/species/vox/suit.dmi index 3bc633bfd46..dc58332c558 100644 Binary files a/icons/mob/clothing/species/vox/suit.dmi and b/icons/mob/clothing/species/vox/suit.dmi differ