From f41ff655fcd935afa500517056a1ecc2b7d5ac0c Mon Sep 17 00:00:00 2001 From: Screemonster Date: Tue, 31 Jan 2017 05:57:50 +0000 Subject: [PATCH] fixes scree's suit modkit --- code/modules/vore/fluffstuff/custom_clothes_vr.dm | 4 ++-- code/modules/vore/fluffstuff/custom_items_vr.dm | 8 ++++---- code/modules/vore/fluffstuff/custom_mecha_vr.dm | 12 ++++++++++++ vorestation.dme | 1 + 4 files changed, 19 insertions(+), 6 deletions(-) create mode 100644 code/modules/vore/fluffstuff/custom_mecha_vr.dm diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 7bf72ed3d2..ee705ebda0 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -523,7 +523,7 @@ //End event costumes //scree:Scree -/obj/item/clothing/head/helmet/space/void/engineering/fluff/screehelm +/obj/item/clothing/head/helmet/space/void/engineering/hazmat/fluff/screehelm name = "Modified Tajara Helmet" desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has radiation shielding. This one doesn't look like it was made for humans. Its been modified to include headlights." @@ -546,7 +546,7 @@ return 1 //scree:Scree -/obj/item/clothing/suit/space/void/engineering/fluff/screespess +/obj/item/clothing/suit/space/void/engineering/hazmat/fluff/screespess name = "Modified Winged Suit" desc = "A special suit that protects against hazardous, low pressure environments. Has radiation shielding. This one doesn't look like it was made for humans. This one was made with a special personal shielding for someone's wings." diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 678a05d6e6..5774a4799b 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -189,10 +189,10 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie icon = 'icons/vore/custom_items_vr.dmi' icon_state = "modkit" - from_helmet = /obj/item/clothing/head/helmet/space/void/engineering - from_suit = /obj/item/clothing/suit/space/void/engineering - to_helmet = /obj/item/clothing/head/helmet/space/void/engineering/fluff/screehelm - to_suit = /obj/item/clothing/suit/space/void/engineering/fluff/screespess + from_helmet = /obj/item/clothing/head/helmet/space/void + from_suit = /obj/item/clothing/suit/space/void + to_helmet = /obj/item/clothing/head/helmet/space/void/engineering/hazmat/fluff/screehelm + to_suit = /obj/item/clothing/suit/space/void/engineering/hazmat/fluff/screespess //General Use /obj/item/weapon/flag diff --git a/code/modules/vore/fluffstuff/custom_mecha_vr.dm b/code/modules/vore/fluffstuff/custom_mecha_vr.dm new file mode 100644 index 0000000000..64e11db1a7 --- /dev/null +++ b/code/modules/vore/fluffstuff/custom_mecha_vr.dm @@ -0,0 +1,12 @@ +/obj/mecha/combat/phazon/scree + desc = "A very, very shiny exosuit. This thing has been polished and waxed practically to a mirror finish." + name = "Scuttlebug" + +/obj/mecha/combat/phazon/scree/New() + ..() + var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/weapon/energy/taser + ME.attach(src) + ME = new /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay + ME.attach(src) + return + diff --git a/vorestation.dme b/vorestation.dme index e8dd464d42..8fb514b57a 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2186,6 +2186,7 @@ #include "code\modules\vore\fluffstuff\custom_clothes_vr.dm" #include "code\modules\vore\fluffstuff\custom_guns_vr.dm" #include "code\modules\vore\fluffstuff\custom_items_vr.dm" +#include "code\modules\vore\fluffstuff\custom_mecha_vr.dm" #include "code\modules\vore\fluffstuff\custom_permits_vr.dm" #include "code\modules\vore\resizing\grav_pull_vr.dm" #include "code\modules\vore\resizing\holder_micro_vr.dm"