From 0898a3cf35c3128d5c038b9850283cb06d5c9b04 Mon Sep 17 00:00:00 2001 From: fallcon Date: Mon, 18 Dec 2023 09:59:54 -0600 Subject: [PATCH] faction stuff is eh --- .../hostile/mining_mobs/hivelord_outfits.dm | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord_outfits.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord_outfits.dm index e402b0e2c396..4c1c09412896 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord_outfits.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord_outfits.dm @@ -315,6 +315,35 @@ name = "Medical Doctor (Legion)" box = /obj/item/storage/box/survival/medical +/datum/outfit/generic/science/pre_equip(mob/living/carbon/human/H) + ..() + if(prob(75)) + uniform = pick(/obj/item/clothing/under/rank/rnd/scientist, /obj/item/clothing/under/rank/rnd/roboticist) + if(prob(75)) + suit = pick(/obj/item/clothing/suit/toggle/labcoat/science, /obj/item/clothing/suit/toggle/suspenders/blue, /obj/item/clothing/suit/hooded/wintercoat/science) + if(prob(75)) + back = pick(/obj/item/storage/backpack/science, /obj/item/storage/backpack/satchel/tox, /obj/item/storage/backpack/messenger/tox) + if(prob(75)) + shoes = /obj/item/clothing/shoes/sneakers/white + if(prob(75)) + gloves = /obj/item/clothing/gloves/color/white + if(prob(75)) + head = /obj/item/clothing/head/beret/sci + if(prob(75)) + ear = /obj/item/radio/headset/headset_sci + if(prob(1)) + neck = /obj/item/clothing/neck/tie/horrible + + +/datum/outfit/generic/science + name = "Scientist (Legion)" + +/datum/outfit/generic/cargo + name = "Cargo Technician (Legion)" + +/datum/outfit/generic/security + name = "Security Officer (Legion)" +/* /datum/outfit/generic/oldminer/pre_equip(mob/living/carbon/human/H, visualsOnly) . = ..() suit = /obj/item/clothing/suit/hooded/explorer/old @@ -376,6 +405,7 @@ /obj/item/borg/upgrade/modkit/cooldown = 1 ) ) + /datum/outfit/generic/oldminer name = "Old Miner (Legion)" @@ -577,3 +607,5 @@ /datum/outfit/generic/srm/hunter name = "Hunter (Legion)" + +*/