diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index a634bf2c46..9a809f09ec 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -139,6 +139,12 @@ icon_state = "purplecomb" item_state = "purplecomb" +/obj/item/weapon/fluff/hugo_cinderbacth_1 //thatoneguy: Hugo Cinderbatch + name = "Old Cane" + desc = "An old brown cane made from wood. It has a a large, itallicized H on it's handle." + icon = 'custom_items.dmi' + icon_state = "special_cane" + attack_self(mob/user) if(user.r_hand == src || user.l_hand == src) for(var/mob/O in viewers(user, null)) @@ -262,7 +268,7 @@ /obj/item/weapon/card/id/fluff/ian_colmid //Roaper: Ian Colm name = "Technician" - desc = "Ian Colm's ID Card (Technician): The current assignment on the card is Technician.The blood type on the card is B+.The DNA hash on the card is d4ce00a0f13f3630585e5762a0c043be.The fingerprint hash on the card is 30ae0b1f8fededb86a1b8af7bebb1b21." + desc = "An old ID with the words 'Ian Colm's Technician ID' printed on it.." icon = 'custom_items.dmi' icon_state = "technician_id" @@ -529,3 +535,4 @@ icon = 'custom_items.dmi' icon_state = "retpoluniform" color = "retpoluniform" + diff --git a/code/modules/customitems/item_spawning.dm b/code/modules/customitems/item_spawning.dm index b8cbc246c2..3b7444e420 100644 --- a/code/modules/customitems/item_spawning.dm +++ b/code/modules/customitems/item_spawning.dm @@ -51,6 +51,8 @@ else if(M.ckey == "nerezza" && M.real_name == "Asher Spock") //This is an Odysseus Specialist ID I.name = "[M.real_name]'s Odysseus Specialist ID Card ([M.mind.role_alt_title ? M.mind.role_alt_title : M.mind.assigned_role])" I.access += list(ACCESS_ROBOTICS) //Station-based mecha pilots need this to access the recharge bay. + else if(M.ckey == "roaper" && M.real_name == "Ian Colm") //This is a Technician ID + I.name = "[M.real_name]'s Technician ID ([M.mind.role_alt_title ? M.mind.role_alt_title : M.mind.assigned_role])" //replace old ID del(C) diff --git a/config/custom_items.txt b/config/custom_items.txt index ea4751bf46..c22d2e04db 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -42,6 +42,7 @@ spaceman96: Trenna Seber: /obj/item/weapon/pen/fluff/multi, /obj/item/clothing/s sparklysheep: Cado Keppel: /obj/item/weapon/fluff/cado_keppel_1 staghorn: Mara Kilpatrick: /obj/item/clothing/mask/mara_kilpatrick_1 tastyfish: Cindy Robertson: /obj/item/weapon/wrapping_paper +thatoneguy: Hugo Cinderbatch: /obj/item/weapon/fluff/hugo_cinderbacth_1 thebreadbocks: Steve Johnson: /obj/item/fluff/steve_johnson_1 themij: Taryn Keppel: /obj/item/clothing/head/helmet/greenbandana/fluff/taryn_kifer_1 thejesster14: Rosa Wolff: /obj/item/device/flashlight/fluff/thejesster14_1 diff --git a/icons/obj/custom_items.dmi b/icons/obj/custom_items.dmi index 07e751abb7..bcaf7e5e7a 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ