From 55d8523787d32cbeabaff24587c6a75174d1c1ed Mon Sep 17 00:00:00 2001 From: Braiden Date: Tue, 15 Sep 2020 19:34:40 -0500 Subject: [PATCH] teshari alternate placement slots (plush only) was only able to figure out how to do it for the plushie. someone else will need to do the living tesh. --- code/game/objects/items/toys/toys_yw.dm | 28 +++++++++++++++---------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/code/game/objects/items/toys/toys_yw.dm b/code/game/objects/items/toys/toys_yw.dm index 82ec98e09f..2b18171fa4 100644 --- a/code/game/objects/items/toys/toys_yw.dm +++ b/code/game/objects/items/toys/toys_yw.dm @@ -3,13 +3,14 @@ desc = "This is Strix Hades the plushie Avali. Very soft, with a pompom on the tail. The toy is made well, as if alive. Looks like he is sleeping. Shhh!" icon_state = "strixplush" item_state = "strixplush" - slot_flags = SLOT_BACK + slot_flags = SLOT_BACK | SLOT_HEAD pokephrase = "Weh!" icon = 'icons/obj/toy_yw.dmi' item_icons = list( slot_l_hand_str = 'icons/mob/items/lefthand_toys_yw.dmi', slot_r_hand_str = 'icons/mob/items/righthand_toys_yw.dmi', - slot_back_str = 'icons/mob/toy_worn_yw.dmi') + slot_back_str = 'icons/mob/toy_worn_yw.dmi', + slot_head_str = 'icons/mob/toy_worn_yw.dmi') rename_plushie() set name = "Name Plushie" @@ -28,7 +29,7 @@ desc = "This is a plushie that resembles an Avali named Eili. The ammount of detail makes it almost look lifelike! Looks like she is sleeping. Shhh!" icon_state = "jeans_eiliplush" item_state = "jeans_eiliplush" - slot_flags = SLOT_BACK + slot_flags = SLOT_BACK | SLOT_HEAD pokephrase = "Weh!" icon = 'icons/vore/custom_items_yw.dmi' item_icons = list( @@ -54,12 +55,13 @@ icon_state = "teshariplushie_brown" item_state = "teshariplushie_brown" pokephrase = "Rya!" - slot_flags = SLOT_BACK + slot_flags = SLOT_BACK | SLOT_HEAD | SLOT_EARS icon = 'icons/obj/toy_yw.dmi' item_icons = list( slot_l_hand_str = 'icons/mob/items/lefthand_toys_yw.dmi', slot_r_hand_str = 'icons/mob/items/righthand_toys_yw.dmi', - slot_back_str = 'icons/mob/toy_worn_yw.dmi') + slot_back_str = 'icons/mob/toy_worn_yw.dmi', + slot_head_str = 'icons/mob/toy_worn_yw.dmi') /obj/item/toy/plushie/teshariw_yw name = "lifelike teshari plush" @@ -67,12 +69,13 @@ icon_state = "teshariplushie_white" item_state = "teshariplushie_white" pokephrase = "Rya!" - slot_flags = SLOT_BACK + slot_flags = SLOT_BACK | SLOT_HEAD icon = 'icons/obj/toy_yw.dmi' item_icons = list( slot_l_hand_str = 'icons/mob/items/lefthand_toys_yw.dmi', slot_r_hand_str = 'icons/mob/items/righthand_toys_yw.dmi', - slot_back_str = 'icons/mob/toy_worn_yw.dmi') + slot_back_str = 'icons/mob/toy_worn_yw.dmi', + slot_head_str = 'icons/mob/toy_worn_yw.dmi') /obj/item/toy/plushie/tesharib_yw name = "lifelike teshari plush" @@ -80,12 +83,14 @@ icon_state = "teshariplushie_black" item_state = "teshariplushie_black" pokephrase = "Rya!" - slot_flags = SLOT_BACK + slot_flags = SLOT_BACK | SLOT_HEAD icon = 'icons/obj/toy_yw.dmi' item_icons = list( slot_l_hand_str = 'icons/mob/items/lefthand_toys_yw.dmi', slot_r_hand_str = 'icons/mob/items/righthand_toys_yw.dmi', - slot_back_str = 'icons/mob/toy_worn_yw.dmi') + slot_back_str = 'icons/mob/toy_worn_yw.dmi', + slot_head_str = 'icons/mob/toy_worn_yw.dmi', + slot_ear_str = 'icons/mob/toy_worn_yw.dmi') /obj/item/toy/plushie/teshariy_yw name = "lifelike teshari plush" @@ -93,9 +98,10 @@ icon_state = "teshariplushie_yellow" item_state = "teshariplushie_yellow" pokephrase = "Rya!" - slot_flags = SLOT_BACK + slot_flags = SLOT_BACK | SLOT_HEAD icon = 'icons/obj/toy_yw.dmi' item_icons = list( slot_l_hand_str = 'icons/mob/items/lefthand_toys_yw.dmi', slot_r_hand_str = 'icons/mob/items/righthand_toys_yw.dmi', - slot_back_str = 'icons/mob/toy_worn_yw.dmi') + slot_back_str = 'icons/mob/toy_worn_yw.dmi', + slot_head_str = 'icons/mob/toy_worn_yw.dmi')