Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions modular_doppler/loadout_categories/categories/belts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@
name = "Civilian Modsuit"
item_path = /obj/item/mod/control/pre_equipped/civilian

/datum/loadout_item/belts/misc/modsuit_thaumaturge
name = "Thaumaturge Modsuit"
item_path = /obj/item/mod/control/pre_equipped/thaumaturge

/datum/loadout_item/belts/misc/lantern
name = "Lantern"
item_path = /obj/item/flashlight/lantern
Binary file modified modular_doppler/modsuits/icons/mod_civilian.dmi
Binary file not shown.
Binary file modified modular_doppler/modsuits/icons/worn.dmi
Binary file not shown.
48 changes: 48 additions & 0 deletions modular_doppler/modsuits/mod_theme.dm
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,51 @@
),
),
)

/datum/mod_theme/thaumaturge
slot_flags = ITEM_SLOT_BELT
name = "thaumaturge"
desc = "Taking massive inspiration from the earliest Nakamura Engineering designs, Tchotchkean Artificers across multiple Blocs have all had a hand in manufacting this feat of Magi Engineering."
extended_desc = "Aesthetically appearing far more akin to ancient suits of armor, these 'T-3 Artifice Modular Outerwear Devices' were a joint combination effort across\
multiple Tchotchkean Blocs in an effort to combine the utility of Modular Outerwear Devices with resonant-friendly materials— while also updating them with the penchant for\
flaire and comfort that Mages so often desire."
default_skin = "thaumaturge"
armor_type = /datum/armor/mod_theme_civilian
complexity_max = DEFAULT_MAX_COMPLEXITY - 3
variants = list(
"thaumaturge" = list(
MOD_ICON_OVERRIDE = 'modular_doppler/modsuits/icons/mod_civilian.dmi',
MOD_WORN_ICON_OVERRIDE = 'modular_doppler/modsuits/icons/worn.dmi',
/obj/item/clothing/head/mod = list(
UNSEALED_LAYER = NECK_LAYER,
UNSEALED_CLOTHING = SNUG_FIT,
SEALED_CLOTHING = THICKMATERIAL|STOPSPRESSUREDAMAGE|HEADINTERNALS,
UNSEALED_INVISIBILITY = HIDEFACIALHAIR,
SEALED_INVISIBILITY = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDESNOUT,
SEALED_COVER = HEADCOVERSMOUTH|HEADCOVERSEYES|PEPPERPROOF,
UNSEALED_MESSAGE = HELMET_UNSEAL_MESSAGE,
SEALED_MESSAGE = HELMET_SEAL_MESSAGE,
),
/obj/item/clothing/suit/mod = list(
UNSEALED_CLOTHING = THICKMATERIAL,
SEALED_CLOTHING = STOPSPRESSUREDAMAGE,
SEALED_INVISIBILITY = HIDEJUMPSUIT,
UNSEALED_MESSAGE = CHESTPLATE_UNSEAL_MESSAGE,
SEALED_MESSAGE = CHESTPLATE_SEAL_MESSAGE,
),
/obj/item/clothing/gloves/mod = list(
UNSEALED_CLOTHING = THICKMATERIAL,
SEALED_CLOTHING = STOPSPRESSUREDAMAGE,
CAN_OVERSLOT = TRUE,
UNSEALED_MESSAGE = GAUNTLET_UNSEAL_MESSAGE,
SEALED_MESSAGE = GAUNTLET_SEAL_MESSAGE,
),
/obj/item/clothing/shoes/mod = list(
UNSEALED_CLOTHING = THICKMATERIAL,
SEALED_CLOTHING = STOPSPRESSUREDAMAGE,
CAN_OVERSLOT = TRUE,
UNSEALED_MESSAGE = BOOT_UNSEAL_MESSAGE,
SEALED_MESSAGE = BOOT_SEAL_MESSAGE,
),
),
)
7 changes: 7 additions & 0 deletions modular_doppler/modsuits/mod_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
/obj/item/mod/module/welding,
/obj/item/mod/module/flashlight,
)

/obj/item/mod/control/pre_equipped/thaumaturge
theme = /datum/mod_theme/thaumaturge
applied_modules = list(
/obj/item/mod/module/welding,
/obj/item/mod/module/flashlight,
)
Loading