Skip to content

Commit

Permalink
faction stuff is eh
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed Dec 18, 2023
1 parent 204ecd8 commit 0898a3c
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Check failure on line 333 in code/modules/mob/living/simple_animal/hostile/mining_mobs/hivelord_outfits.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "ear"
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
Expand Down Expand Up @@ -376,6 +405,7 @@
/obj/item/borg/upgrade/modkit/cooldown = 1
)
)
/datum/outfit/generic/oldminer
name = "Old Miner (Legion)"
Expand Down Expand Up @@ -577,3 +607,5 @@
/datum/outfit/generic/srm/hunter
name = "Hunter (Legion)"
*/

0 comments on commit 0898a3c

Please sign in to comment.