diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index 4514573a42a..eb689593f03 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -148,11 +148,11 @@ heirloom_type = /obj/item/clothing/under/shorts/purple //Medical if("Chief Medical Officer") - heirloom_type = pick(/obj/item/clothing/neck/stethoscope, /obj/item/bodybag) + heirloom_type = /obj/item/storage/firstaid/ancient/heirloom if("Medical Doctor") - heirloom_type = pick(/obj/item/clothing/neck/stethoscope, /obj/item/bodybag) + heirloom_type = /obj/item/storage/firstaid/ancient/heirloom if("Paramedic") - heirloom_type = pick(/obj/item/clothing/neck/stethoscope, /obj/item/bodybag) + heirloom_type = /obj/item/storage/firstaid/ancient/heirloom if("Psychologist") heirloom_type = /obj/item/storage/pill_bottle if("Chemist") diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 8f3b5a7835e..f92938e3fa7 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -114,7 +114,7 @@ generate_items_inside(items_inside,src) /obj/item/storage/firstaid/ancient - icon_state = "firstaid" + icon_state = "oldfirstaid" desc = "A first aid kit with the ability to heal common types of injuries." /obj/item/storage/firstaid/ancient/PopulateContents() @@ -126,6 +126,10 @@ /obj/item/stack/medical/ointment= 3) generate_items_inside(items_inside,src) +/obj/item/storage/firstaid/ancient/heirloom + desc = "A first aid kit with the ability to heal common types of injuries. You start thinking of the good old days just by looking at it." + empty = TRUE // long since been ransacked by hungry powergaming assistants breaking into med storage + /obj/item/storage/firstaid/fire name = "burn treatment kit" desc = "A specialized medical kit for when the toxins lab -spontaneously- burns down." diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index 2dcde5a0f55..f2c92032424 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ