diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 917dcddc..98e8b1be 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -648,7 +648,7 @@ icon_state = "bluepanther" item_state = "bluepanther" -/obj/item/clothing/gloves/fluff/amy_gloves //Red fingerless gloves - Amy Tilley - lk600 - GET SPRITE +/obj/item/clothing/gloves/fluff/amy_gloves //Red fingerless gloves - Amy Tilley - lk600 - DONE name = "Red fingerless gloves" desc = "A pair of red and black fingerless gloves that stretch up the arm. They look to be made of a soft wool and are well worn." icon = 'icons/obj/custom_items.dmi' @@ -656,7 +656,7 @@ item_state = "amy_gloves" clipped = 1 -/obj/item/clothing/tie/storage/fluff/cecillia_locket +/obj/item/clothing/tie/storage/fluff/cecillia_locket //Old locket - Cecillia Lambert - casperf1 - DONE name = "old locket" desc = "A dark metal locket, it seems at least sixty years old. The photo that was once inside is gone." icon = 'icons/obj/custom_items.dmi' @@ -697,13 +697,19 @@ /obj/item/clothing/tie/storage/fluff/cecillia_locket/New() ..() - new /obj/item/weapon/reagent_containers/pill/cecillia_pill(src) + new /obj/item/weapon/reagent_containers/pill/cecillia_pill(hold) return -/obj/item/clothing/glasses/regular/fluff/cecillia_glasses +/obj/item/clothing/glasses/regular/fluff/cecillia_glasses //Red prescription glasses - Cecillia Lamber - casperf1 - DONE name = "red prescription glasses" desc = "These glasses have been prescribed for a terrible pair of eyes." icon = 'icons/obj/custom_items.dmi' icon_state = "cecillia_glasses" item_state = "cecillia_glasses" +/obj/item/clothing/suit/wintercoat/fluff/temple_coat //Red coat - Temple Zorion - deatacita - DONE + name = "red coat" + desc = "An old red and black winter-coat, there looks to be spots of dried blood on it." + icon = 'icons/obj/custom_items.dmi' + icon_state = "temple_coat" + item_state = "temple_coat" \ No newline at end of file diff --git a/code/modules/customitems/item_spawning.dm b/code/modules/customitems/item_spawning.dm index 7a6fab25..9beaca9c 100644 --- a/code/modules/customitems/item_spawning.dm +++ b/code/modules/customitems/item_spawning.dm @@ -96,6 +96,11 @@ del(Item) goto skip var/obj/item/device/pda/fluff/meowykins_pda/I = Item + if(istype(M.belt,/obj/item/device/pda)) + for(var/obj/item/device/pda/B in M) + del(B) + M.belt=null + ok = M.equip_if_possible(I, slot_belt,0) if(istype(M.l_store,/obj/item/device/pda)) for(var/obj/item/device/pda/B in M) del(B) diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 5f62ee4d..688d0fe1 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/custom_items.dmi b/icons/obj/custom_items.dmi index 4e13788d..8364bd94 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ