Skip to content

Commit

Permalink
medical
Browse files Browse the repository at this point in the history
  • Loading branch information
silicons committed Aug 2, 2023
1 parent d92620c commit 3f4d83c
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions code/__DEFINES/inventory/bodytypes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@
#define BODYTYPE_XENOHYBRID "xenohybrid"
/// digitigrade unathi
#define BODYTYPE_UNATHI_DIGI "unathi-digi"
/// ipc - from aurora, currently unused other than in sprites
#define BODYTYPE_IPC "ipc"

//! keep this number (count) up to date
#define BODYTYPES_TOTAL 19
Expand Down
26 changes: 26 additions & 0 deletions code/modules/rigsuits/themes/station/medical.dm
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
//* This file is explicitly licensed under the MIT license. *//
//* Copyright (c) 2023 Citadel Station developers. *//

/datum/rig_theme/station/medical
abstract_type = /datum/rig_theme/station/medical
base_icon = 'icons/modules/rigsuits/suits/station/medical.dmi'

/datum/rig_theme/station/medical/standard
name = "medical rig"
base_state = "medical"
desc = "TBD"
fluff_desc = "TBD"
display_name = "medical"
visible_name = "Medical"
pieces = list(
/datum/rig_piece/helmet{
worn_bodytypes = BODYTYPES(BODYTYPE_DEFAULT, BODYTYPE_TAJARAN, BODYTYPE_SKRELL, BODYTYPE_UNATHI, BODYTYPE_UNATHI_DIGI, BODYTYPE_IPC);
},
/datum/rig_piece/chestplate{
worn_bodytypes = BODYTYPES(BODYTYPE_DEFAULT, BODYTYPE_TAJARAN, BODYTYPE_UNATHI, BODYTYPE_UNATHI_DIGI, BODYTYPE_IPC);
},
/datum/rig_piece/gloves{
worn_bodytypes = BODYTYPES(BODYTYPE_DEFAULT, BODYTYPE_TAJARAN, BODYTYPE_IPC);
},
/datum/rig_piece/boots{
worn_bodytypes = BODYTYPES(BODYTYPE_DEFAULT, BODYTYPE_TAJARAN, BODYTYPE_IPC);
},
)

#warn impl
Binary file modified icons/modules/rigsuits/baylikes/clothing8.dmi
Binary file not shown.
Binary file modified icons/modules/rigsuits/suits/medical.dmi
Binary file not shown.

0 comments on commit 3f4d83c

Please sign in to comment.