From 7afffc5096b28f7fd868c1eb5bffb101d61d60c6 Mon Sep 17 00:00:00 2001 From: Keila-coon <57070239+Keila-coon@users.noreply.github.com> Date: Tue, 29 Oct 2019 22:34:59 -0430 Subject: [PATCH] Added modkit for fluff item Modkit for mocha's suit --- .../loadout/loadout_fluffitems_yw.dm | 17 ++++++----------- .../vore/fluffstuff/custom_clothes_yw.dm | 7 ++++++- code/modules/vore/fluffstuff/custom_items_yw.dm | 17 ++++++++++++++++- 3 files changed, 28 insertions(+), 13 deletions(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm index cabe1a9f80..3372631f9f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm @@ -698,20 +698,15 @@ description = "A Greenish-white uniform for operating in hazardous environments. This one is suited for colder environments." ckeywhitelist = list("Moca_The_Porg1") character_name = list("Mocha") + allowed_roles = list("Explorer", "Pathfinder") -/datum/gear/fluff/mochaexplorersuit - path = /obj/item/clothing/vest/fluff/mocha_suit - display_name = "Winterized Explorer Suit" - description = "An armoured suit for exploring harsh environments. This one seems more suited for winter." - ckeywhitelist = list("Moca_The_Porg1") - character_name = list("Mocha") - -/datum/gear/fluff/mochaexplorerhood - path = /obj/item/clothing/head/hood/mocha_hood - display_name = "Winterized Explorer Hood" - description = "An armoured hood for exploring harsh environments. This one seems fluffier." +/datum/gear/fluff/mocha_suit_kit + path = /obj/item/clothing/suit/storage/hooded/fluff/mocha_suit + display_name = "Mocha's modkit" + description = "A kit containing all the needed tools and parts to modify a Explorer Suit" ckeywhitelist = list("Moca_The_Porg1") character_name = list("Mocha") + allowed_roles = list("Explorer", "Pathfinder") // N CKEYS //NESgamer190 diff --git a/code/modules/vore/fluffstuff/custom_clothes_yw.dm b/code/modules/vore/fluffstuff/custom_clothes_yw.dm index c5070992e5..a9369e1350 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_yw.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_yw.dm @@ -1511,7 +1511,7 @@ icon_override = "icons/vore/custom_clothes_yw.dmi" item_state = "mocha_uniform" -/obj/item/clothing/vest/fluff/mocha_suit +/obj/item/clothing/suit/storage/hooded/fluff/mocha_suit name = "Winterized Explorer Suit" desc = "An armoured suit for exploring harsh environments. This one seems more suited for winter." icon = 'icons/vore/custom_clothes_yw.dmi' @@ -1523,6 +1523,7 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE cold_protection = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + hoodtype = /obj/item/clothing/head/hood/mocha_hood siemens_coefficient = 0.9 armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 35, bio = 75, rad = 35) // Inferior to sec vests in bullet/laser but better for environmental protection. allowed = list( @@ -1543,3 +1544,7 @@ icon_state = "mocha_hood" icon_override = "icons/vore/custom_clothes_yw.dmi" item_state = "mocha_hood_s" + flags = THICKMATERIAL + min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE + siemens_coefficient = 0.9 + armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 35, bio = 75, rad = 35) diff --git a/code/modules/vore/fluffstuff/custom_items_yw.dm b/code/modules/vore/fluffstuff/custom_items_yw.dm index 8f0bf2fc55..293874b276 100644 --- a/code/modules/vore/fluffstuff/custom_items_yw.dm +++ b/code/modules/vore/fluffstuff/custom_items_yw.dm @@ -551,4 +551,19 @@ name = "Cryostasis Thermos" desc = " A thermos that has been designed to look something akin to a mix between a cryostasis beaker and a thermos. Does NOT keep the drinks cold, surprisingly enough." icon_state = "cryothermos" - icon = 'icons/vore/custom_items_yw.dmi' \ No newline at end of file + icon = 'icons/vore/custom_items_yw.dmi' + +// ************** +// Moca_The_Porg1 +// ************** + +//Mocha +/obj/item/device/modkit_conversion/fluff/mocha_suit_kit + name = "Mocha's modkit" + desc = "A kit containing all the needed tools and parts to modify a Explorer Suit" + + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "modkit" + + from_suit = /obj/item/clothing/suit/storage/hooded/explorer + to_suit = /obj/item/clothing/suit/storage/hooded/fluff/mocha_suit \ No newline at end of file