Merge pull request #3726 from VOREStation/aro-issue-3723

Replace explorer suit with basically the same suit
This commit is contained in:
Aronai Sieyes
2018-05-18 22:14:10 -04:00
committed by GitHub
2 changed files with 71 additions and 5 deletions
@@ -73,3 +73,51 @@
// This variable is normally used to set the icon_override when the suit is refitted,
// however the species spritesheet now means we no longer need that anyway!
sprite_sheets_refit = list()
/obj/item/clothing/suit/space/void/explorer
desc = "A classy red voidsuit for the needs of any semi-retro-futuristic spaceperson! This one is rather loose fitting."
species_restricted = list(
SPECIES_HUMAN,
SPECIES_SKRELL,
SPECIES_UNATHI,
SPECIES_TAJ,
SPECIES_TESHARI,
SPECIES_AKULA,
SPECIES_ALRAUNE,
SPECIES_NEVREAN,
SPECIES_RAPALA,
SPECIES_SERGAL,
SPECIES_VASILISSAN,
SPECIES_VULPKANIN,
SPECIES_XENOCHIMERA,
SPECIES_XENOHYBRID,
SPECIES_ZORREN_FLAT,
SPECIES_ZORREN_HIGH
)
/obj/item/clothing/suit/space/void/explorer/initialize()
. = ..()
sprite_sheets += sprite_sheets_refit
/obj/item/clothing/head/helmet/space/void/explorer
desc = "A helmet that matches a red voidsuit! So classy."
species_restricted = list(
SPECIES_HUMAN,
SPECIES_SKRELL,
SPECIES_UNATHI,
SPECIES_TAJ,
SPECIES_TESHARI,
SPECIES_AKULA,
SPECIES_ALRAUNE,
SPECIES_NEVREAN,
SPECIES_RAPALA,
SPECIES_SERGAL,
SPECIES_VASILISSAN,
SPECIES_VULPKANIN,
SPECIES_XENOCHIMERA,
SPECIES_XENOHYBRID,
SPECIES_ZORREN_FLAT,
SPECIES_ZORREN_HIGH
)
/obj/item/clothing/head/helmet/space/void/explorer/initialize()
. = ..()
sprite_sheets += sprite_sheets_refit