Vaurca Breeder Resprite (#14368)

This commit is contained in:
Wowzewow (Wezzy)
2022-07-02 12:26:50 +02:00
committed by GitHub
parent 1c527e8b67
commit 197eb2bbaa
22 changed files with 189 additions and 106 deletions
+14 -2
View File
@@ -27,8 +27,7 @@
SPECIES_UNATHI,
SPECIES_VAURCA_WORKER,
SPECIES_VAURCA_WARRIOR,
SPECIES_VAURCA_BULWARK,
SPECIES_VAURCA_BREEDER
SPECIES_VAURCA_BULWARK
)
)
@@ -56,6 +55,19 @@
uniform = /obj/item/clothing/under/skrell
/datum/outfit/job/representative/consular/jargon/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
if(H && !visualsOnly)
if(isvaurca(H)) // there should be a system for this but for now this will have to do i guess
H.equip_to_slot_or_del(new /obj/item/clothing/under/gearharness(H), slot_w_uniform)
H.equip_to_slot_or_del(new /obj/item/clothing/head/vaurca_breeder/jargon(H), slot_head)
H.equip_to_slot_or_del(new /obj/item/clothing/shoes/vaurca/breeder/jargon(H), slot_shoes)
H.equip_to_slot_or_del(new /obj/item/clothing/mask/breath/vaurca/filter(H), slot_wear_mask)
H.equip_to_slot_or_del(new /obj/item/clothing/suit/vaurca/breeder/jargon(H), slot_wear_suit)
H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec/cthur(H), slot_back)
else
addtimer(CALLBACK(src, .proc/send_representative_mission, H), 5 MINUTES)
return TRUE
/datum/citizenship/epsilon
name = CITIZENSHIP_EUM
description = "An independent nation on the edge of Skrell space, the Co-Operative Territories of Epsilon Ursae Minoris, \
@@ -128,16 +128,16 @@
uniform = /obj/item/clothing/under/gearharness
glasses = null
head = /obj/item/clothing/head/klax_breeder
shoes = /obj/item/clothing/shoes/vaurca/breeder_klax
head = /obj/item/clothing/head/vaurca_breeder/klax
shoes = /obj/item/clothing/shoes/vaurca/breeder/klax
mask = /obj/item/clothing/mask/breath/vaurca/filter
suit = /obj/item/clothing/suit/vaurca/breeder_klax
suit = /obj/item/clothing/suit/vaurca/breeder/klax
/datum/outfit/job/representative/consular/klax/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
if(H && !visualsOnly)
if(isvaurca(H))
H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec_klax(H), slot_back)
H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec/klax(H), slot_back)
addtimer(CALLBACK(src, .proc/send_representative_mission, H), 5 MINUTES)
return TRUE
@@ -199,14 +199,14 @@
uniform = /obj/item/clothing/under/gearharness
glasses = null
head = /obj/item/clothing/head/cthur_breeder
shoes = /obj/item/clothing/shoes/vaurca/breeder_cthur
head = /obj/item/clothing/head/vaurca_breeder/cthur
shoes = /obj/item/clothing/shoes/vaurca/breeder/cthur
mask = /obj/item/clothing/mask/breath/vaurca/filter
suit = /obj/item/clothing/suit/vaurca/breeder_cthur
suit = /obj/item/clothing/suit/vaurca/breeder/cthur
/datum/outfit/job/representative/consular/cthur/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
if(H && !visualsOnly)
if(isvaurca(H))
H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec_cthur(H), slot_back)
H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec/cthur(H), slot_back)
addtimer(CALLBACK(src, .proc/send_representative_mission, H), 5 MINUTES)
return TRUE
return TRUE