diff --git a/code/modules/client/preference_setup/loadout/loadout_gloves_vr.dm b/code/modules/client/preference_setup/loadout/loadout_gloves_vr.dm index 73f2b4ea5b..56ea7626b0 100644 --- a/code/modules/client/preference_setup/loadout/loadout_gloves_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_gloves_vr.dm @@ -21,4 +21,8 @@ /datum/gear/gloves/latex/colorable/New() ..() - gear_tweaks = list(gear_tweak_free_color_choice) \ No newline at end of file + gear_tweaks = list(gear_tweak_free_color_choice) + +/datum/gear/gloves/siren + display_name = "gloves, Siren" + path = /obj/item/clothing/gloves/fluff/siren \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm b/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm index ed1578cce2..ff04b6a989 100644 --- a/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm @@ -9,3 +9,7 @@ /datum/gear/shoes/black/cuffs/red display_name = "legwraps, red" path = /obj/item/clothing/shoes/black/cuffs/red + +/datum/gear/shoes/siren + display_name = "boots, Siren" + path = /obj/item/clothing/shoes/boots/fluff/siren \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 802d3c9b99..4edbea1a23 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -163,4 +163,9 @@ Swimsuits //Latex maid dress /datum/gear/uniform/latexmaid display_name = "latex maid dress" - path = /obj/item/clothing/under/fluff/latexmaid \ No newline at end of file + path = /obj/item/clothing/under/fluff/latexmaid + +//Tron Siren outfit +/datum/gear/uniform/siren + display_name = "jumpsuit, Siren" + path = /obj/item/clothing/under/fluff/siren \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index d079959619..e143bce7ee 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -1714,3 +1714,35 @@ Departamental Swimsuits, for general use "Teshari" = 'icons/vore/custom_clothes_tesh_vr.dmi' ) body_parts_covered = UPPER_TORSO|LOWER_TORSO + +//Aztectornado:Tron inspired Siren outfit +/obj/item/clothing/under/fluff/siren + name = "Siren Jumpsuit" + desc = "An advanced jumpsuit with inlaid neon highlighting, and a port on the back." + description_fluff = "Unlike other competitor suits, the Ward Takahashi Siren jumpsuit features a whole host of extra sensors for augmented reality use, and features a non-invasive neural sensor/stimulator for a fully immersive experience." + + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_override = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "tronsiren" + worn_state = "tronsiren_mob" + item_state = "tronsiren_mob" + rolled_sleeves = 0 + +/obj/item/clothing/gloves/fluff/siren + name = "Siren Gloves" + desc = "A set of white and neon blue gloves." + description_fluff = "Like its jumpsuit companion, the Ward Takahashi Siren gloves feature multiple sensors for usage in augmented reality. The gloves operate fine even without a paired jumpsuit, offering optimal AR menu control and haptic feedback." + + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_override = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "tronsiren_gloves" + item_state = "tronsiren_gloves_mob" + +/obj/item/clothing/shoes/boots/fluff/siren + name = "Siren Boots" + desc = "A set of white boots with neon lighting." + description_fluff = "Unlike the rest of the Ward Takahashi Siren lineup, the boots are simply boots. However, they go great with the rest of the outfit, and are quite comfortable." + + icon_state = "tronsiren_shoes" + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_override = 'icons/vore/custom_onmob_vr.dmi' \ No newline at end of file diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index 810e024577..f07611d375 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ diff --git a/icons/vore/custom_onmob_vr.dmi b/icons/vore/custom_onmob_vr.dmi index b1e7549ef5..f2913f743a 100644 Binary files a/icons/vore/custom_onmob_vr.dmi and b/icons/vore/custom_onmob_vr.dmi differ