diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 9f762389..1d071557 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -955,3 +955,12 @@ /obj/item/clothing/head/hooded/winterhood/durathread icon_state = "winterhood_durathread" + +//Enzo_Leon Patron stuff +/obj/item/clothing/suit/toggle/enzojacket + name = "Altevain Colony-Ship Command Jacket" + desc = "A comfortable form fitting jacket that has a little cheese emblem on the chest." + icon_state = "enzojacket" + item_state = "enzojacket" + body_parts_covered = CHEST|ARMS +//End \ No newline at end of file diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 70cdbcec..421555d6 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -796,4 +796,14 @@ item_color = "greenplaidshirt" body_parts_covered = CHEST|GROIN|ARMS|LEGS can_adjust = FALSE -//yes \ No newline at end of file +//yes + +//Enzo_Leon patron stuff +/obj/item/clothing/under/enzoshirt + name = "Altevain Standard-Issue Uniform" + desc = "A soft, and light uniform with blue-space threading to help with Altevain proportions." + icon_state = "enzoshirt" + item_state = "enzoshirt" + item_color = "enzoshirt" + body_parts_covered = CHEST|GROIN|ARMS|LEGS +//End \ No newline at end of file diff --git a/hyperstation/code/obj/plushes.dm b/hyperstation/code/obj/plushes.dm index fee935c6..00950993 100644 --- a/hyperstation/code/obj/plushes.dm +++ b/hyperstation/code/obj/plushes.dm @@ -82,4 +82,16 @@ item_state = "vladin" attack_verb = list("nuked", "detonated", "CQC'd", "robusted") squeak_override = list('sound/effects/hit_punch.ogg' = 1, 'sound/effects/hit_kick.ogg' = 1, 'sound/weapons/cqchit1.ogg' = 1, 'sound/weapons/cqchit2.ogg' = 1) -//I can't figure out how to make him loyal to a specific type of plush. If anyone figures that out, there will be more. Until then, this is the end of the vladplush. \ No newline at end of file +//I can't figure out how to make him loyal to a specific type of plush. If anyone figures that out, there will be more. Until then, this is the end of the vladplush. + +//Enzo_Leon patron stuff +/obj/item/toy/plush/mammal/enzo_leon + name = "rat plushie" + desc = "An stuffed toy of a mammal that seems to resemble a crew member! Iconically it has a squeaker as you'd expect." + gender = MALE //It's a boy! + icon = 'hyperstation/icons/obj/plushes.dmi' + icon_state = "enzor" + item_state = "enzor" + attack_verb = list("tail bapped", "whomped", "squeaked") + squeak_override = list('sound/effects/mousesqueek.ogg'= 1) +//End \ No newline at end of file diff --git a/hyperstation/icons/obj/plushes.dmi b/hyperstation/icons/obj/plushes.dmi index 5083e962..55bd43a5 100644 Binary files a/hyperstation/icons/obj/plushes.dmi and b/hyperstation/icons/obj/plushes.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 21540c86..eb8f9c9f 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/mob/suit_digi.dmi b/icons/mob/suit_digi.dmi index 7b9062d5..ba14c672 100644 Binary files a/icons/mob/suit_digi.dmi and b/icons/mob/suit_digi.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index 1751307c..36ed3f45 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index cb5fc392..56e5baa5 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 26d4993d..45688925 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index add80a0b..c94b241b 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -111,3 +111,20 @@ path = /obj/item/clothing/mask/keaton ckeywhitelist = list("cherostavik") +/datum/gear/enzo_leonplushie + name = "Enzo Leon Plushie" + category = SLOT_IN_BACKPACK + path = /obj/item/toy/plush/mammal/enzo_leon + ckeywhitelist = list("Enzo_Leon") + +/datum/gear/enzo_leonshirt + name = "Altevain Standard-Issue Uniform" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/enzoshirt + ckeywhitelist = list("Enzo_Leon") + +/datum/gear/enzo_leonjacket + name = "Altevain Colony-Ship Command Jacket" + category = SLOT_WEAR_SUIT + path = /obj/item/clothing/suit/toggle/enzojacket + ckeywhitelist = list("Enzo_Leon") diff --git a/modular_citadel/icons/mob/suit_digi.dmi b/modular_citadel/icons/mob/suit_digi.dmi index bf8b9c83..23066ed4 100644 Binary files a/modular_citadel/icons/mob/suit_digi.dmi and b/modular_citadel/icons/mob/suit_digi.dmi differ diff --git a/modular_citadel/icons/mob/uniform_digi.dmi b/modular_citadel/icons/mob/uniform_digi.dmi index 96b3aa12..17458d87 100644 Binary files a/modular_citadel/icons/mob/uniform_digi.dmi and b/modular_citadel/icons/mob/uniform_digi.dmi differ