Skip to content

Commit

Permalink
[MIRROR] Adds new nova labcoat for geneticist and roboticist (#5239)
Browse files Browse the repository at this point in the history
* Adds new nova labcoat for geneticist and roboticist (#4665)

* add labcoat sprite & adding them to wardrobe

* allow xeno bag

---------

Co-authored-by: Arae <[email protected]>

* [MIRROR] Adds new nova labcoat for geneticist and roboticist

---------

Co-authored-by: araeotu <[email protected]>
Co-authored-by: Arae <[email protected]>
Co-authored-by: StealsThePRs <[email protected]>
  • Loading branch information
4 people authored Dec 17, 2024
1 parent 6fe5ad7 commit 57391f0
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
16 changes: 16 additions & 0 deletions modular_nova/master_files/code/modules/clothing/suits/labcoat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,26 @@
icon_state = "labcoat_pharm"
gets_cropped_on_taurs = FALSE

/obj/item/clothing/suit/toggle/labcoat/nova/geneticist
name = "geneticist's labcoat"
desc = "A standard labcoat for geneticist."
icon_state = "labcoat_gene"
gets_cropped_on_taurs = FALSE

/obj/item/clothing/suit/toggle/labcoat/nova/roboticist
name = "roboticist's labcoat"
desc = "A standard labcoat for roboticist."
icon_state = "labcoat_robot"
gets_cropped_on_taurs = FALSE

/obj/item/clothing/suit/toggle/labcoat/nova/pharmacist/Initialize(mapload)
. = ..()
allowed += /obj/item/storage/bag/chemistry

/obj/item/clothing/suit/toggle/labcoat/nova/regular/Initialize(mapload)
. = ..()
allowed += /obj/item/storage/bag/xeno

/obj/item/clothing/suit/toggle/labcoat/nova/highvis
name = "high vis labcoat"
desc = "A high visibility vest for emergency responders, intended to draw attention away from the blood."
Expand Down
Binary file modified modular_nova/master_files/icons/mob/clothing/suits/labcoat.dmi
Binary file not shown.
Binary file modified modular_nova/master_files/icons/obj/clothing/suits/labcoat.dmi
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,14 @@
name = "Pharmacist's Labcoat"
item_path = /obj/item/clothing/suit/toggle/labcoat/nova/pharmacist

/datum/loadout_item/suit/labcoat_geneticist
name = "Geneticist's Labcoat"
item_path = /obj/item/clothing/suit/toggle/labcoat/nova/geneticist

/datum/loadout_item/suit/labcoat_roboticist
name = "Roboticist's Labcoat"
item_path = /obj/item/clothing/suit/toggle/labcoat/nova/roboticist

/datum/loadout_item/suit/labcoat_custom
name = "Custom Labcoat"
item_path = /obj/item/clothing/suit/toggle/labcoat/nova/custom
Expand Down
7 changes: 7 additions & 0 deletions modular_nova/modules/modular_vending/code/wardrobes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
/obj/item/stack/medical/gauze = 4, // for ALL wounds
/obj/item/healthanalyzer/no_medibot = 2, // disallows medibot use so it's not wasted immediately on medibots
/obj/item/healthanalyzer/simple = 2,
/obj/item/clothing/suit/toggle/labcoat/nova/roboticist = 3,
/obj/item/storage/backpack/science/robo = 2,
/obj/item/storage/backpack/satchel/science/robo = 2,
/obj/item/storage/backpack/duffelbag/science/robo = 2,
Expand All @@ -81,10 +82,16 @@
products_nova = list(
/obj/item/clothing/under/rank/rnd/scientist/nova/hlscience = 3,
/obj/item/clothing/under/rank/rnd/scientist/nova/utility = 3,
/obj/item/clothing/suit/toggle/labcoat/nova/regular = 3,
/obj/item/clothing/suit/toggle/jacket/sci = 3,
/obj/item/storage/backpack/messenger/science = 3,
)

/obj/machinery/vending/wardrobe/gene_wardrobe
products_nova = list(
/obj/item/clothing/suit/toggle/labcoat/nova/geneticist = 3,
)

/obj/machinery/vending/wardrobe/hydro_wardrobe
contraband_nova = list(
/obj/item/clothing/under/suit/nova/scarface = 2,
Expand Down

0 comments on commit 57391f0

Please sign in to comment.