diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index ec4b76c5..a09bcc95 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -1359,3 +1359,61 @@ END R I P HAZERI /obj/item/weapon/soap/fluff/jace_toothbrush/attack(mob/target as mob, mob/user as mob) return + + +// Inis Truesight's Medical Wristband - Gollee +/obj/item/clothing/gloves/fluff/inis_medicalwristband + name = "medical wristband - EPILEPSY" + desc = "A stainless steel tag on a plastic wristband. The tag reads 'ABSENCE EPILEPSY-2U CITALOPRAM'" + icon = 'icons/obj/custom_items/inis_medicalwristband.dmi' + icon_state = "inis_medicalwristband" + contained_sprite = 1 + species_restricted = list("exclude") // So that any species can wear it (It's a wristband, not full-fingered gloves). + sprite_sheets = list() // To remove the 'Vox' entry that would override the sprite if worn by a vox + gender = "neuter" // Makes it read 'Has a medical wristband on his hands' instead of 'Has some medical wristband on his hands' + + +// Halo O'Kyle's Research Notebook - Nogo3 +/obj/item/weapon/folder/fluff/halo_researchnotebook + name = "research notebook" + desc = "A plain notebook with a blue binding that has 'RESEARCH NOTES' sprawled on the cover, and the letters 'H.K.' dotting the bottom right. Post-it notes and loose papers stick out haphazardly, and it looks like it's been repaired with tape more than once." + icon = 'icons/obj/custom_items/halo_researchnotebook.dmi' + icon_state = "halo_researchnotebook" + contained_sprite = 1 + + +// Lua Saudosa's 'Lucky' chip - Killerhurtz +/obj/item/fluff/lua_luckychip + name = "'Lucky' chip" + desc = "A round, grey, plastic object - a chip or coin of some sort. On one side there is a logo engraved into it, though it is not familiar. On the other, the words 'One key, ten thousand minds' surround engraved text much too small to read." + icon = 'icons/obj/custom_items/lua_luckychip.dmi' + icon_state = "lua_luckychip" + contained_sprite = 1 + slot_flags = SLOT_EARS + + +// Miko Du'Razhu's sake bottle - Jakers457 +/obj/item/weapon/reagent_containers/food/drinks/bottle/fluff/miko_sakebottle + name = "sake bottle" + desc = "A stone bottle of Sake with a Blue Moon painted on it." + icon = 'icons/obj/custom_items/miko_sakebottle.dmi' + icon_state = "miko_sakebottle" + isGlass = 0 // Description says stone bottle, not glass + + New() + ..() + reagents.add_reagent("sake", 100) + +// Lori Alvarez's pink screwdriver - NebulaFlare +/obj/item/weapon/screwdriver/fluff/lori_pinkscrewdriver + name = "Pink Screwdriver" + desc = "A pink screwdriver. 'Margrite' is etched into the handle." + icon = 'icons/obj/items.dmi' + icon_state = "screwdriver3" + item_state = "screwdriver_purple" + +/obj/item/weapon/screwdriver/fluff/lori_pinkscrewdriver/New() + if (prob(75)) + src.pixel_y = rand(0, 16) + + return \ No newline at end of file diff --git a/icons/mob/custom-synthetic.dmi b/icons/mob/custom-synthetic.dmi index 0e2f6ea2..31513bc5 100644 Binary files a/icons/mob/custom-synthetic.dmi and b/icons/mob/custom-synthetic.dmi differ diff --git a/icons/obj/custom_items/halo_researchnotebook.dmi b/icons/obj/custom_items/halo_researchnotebook.dmi new file mode 100644 index 00000000..43011dfe Binary files /dev/null and b/icons/obj/custom_items/halo_researchnotebook.dmi differ diff --git a/icons/obj/custom_items/inis_medicalwristband.dmi b/icons/obj/custom_items/inis_medicalwristband.dmi new file mode 100644 index 00000000..1f5f5cc8 Binary files /dev/null and b/icons/obj/custom_items/inis_medicalwristband.dmi differ diff --git a/icons/obj/custom_items/lua_luckychip.dmi b/icons/obj/custom_items/lua_luckychip.dmi new file mode 100644 index 00000000..c8054596 Binary files /dev/null and b/icons/obj/custom_items/lua_luckychip.dmi differ diff --git a/icons/obj/custom_items/miko_sakebottle.dmi b/icons/obj/custom_items/miko_sakebottle.dmi new file mode 100644 index 00000000..5045a06e Binary files /dev/null and b/icons/obj/custom_items/miko_sakebottle.dmi differ