diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 8b321058b5c..ddbc5d7f579 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -10,6 +10,25 @@ ////////// Fluff Items /////////// ////////////////////////////////// +/obj/item/weapon/paper/fluff/sue_donem // aikasan: Sue Donem + name = "cyborgification waiver" + desc = "It's some kind of official-looking contract." + +/obj/item/weapon/paper/fluff/sue_donem/New() + ..() + + info = "Organic Carrier AIA and Standard Cyborgification Agreement
\n
\nUnder the authority of Nanotrasen Synthetic Intelligence Division, this document hereby authorizes an accredited Roboticist of the NSS Exodus or a deputized authority to perform a regulation lobotomisation upon the person of one 'Sue Donem' (hereafter referred to as the Subject) with intent to enact a live Artificial Intelligence Assimilation (AIA) or live Cyborgification proceedure.
\n
\nNo further station authorization is required, and the Subject waives all rights as a human under Nanotrasen internal and external legal protocol. This document is subject to amendment under Nanotrasen internal protocol \[REDACTED\].
\n
\nSigned: Sue Donem
\n" + + stamps = (stamps=="" ? "
" : "
") + "This paper has been stamped with the NanoTrasen Synthetic Intelligence Division rubber stamp." + + var/image/stampoverlay = image('icons/obj/bureaucracy.dmi') + stampoverlay.pixel_x = rand(-2, 2) + stampoverlay.pixel_y = rand(-3, 2) + stampoverlay.icon_state = "paper_stamp-rd" + overlays += stampoverlay + + update_icon() + /obj/item/fluff/wes_solari_1 //tzefa: Wes Solari name = "family photograph" desc = "A family photograph of a couple and a young child, Written on the back it says \"See you soon Dad -Roy\"." @@ -548,6 +567,12 @@ //////////// Suits //////////// +/obj/item/clothing/suit/storage/labcoat/fluff/aeneas_rinil //Robotics Labcoat - Aeneas Rinil [APPR] + name = "Robotics labcoat" + desc = "A labcoat with a few markings denoting it as the labcoat of roboticist." + icon = 'custom_items.dmi' + icon_state = "aeneasrinil_open" + /obj/item/clothing/suit/storage/labcoat/fluff/pink //spaceman96: Trenna Seber name = "pink labcoat" desc = "A suit that protects against minor chemical spills. Has a pink stripe down from the shoulders." diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 41e428f3c21..edbec0466dd 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 30d8ac3d04a..36b944cf511 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ