From 659c4bb47eae4809bce8bc4d871df75f57f3c12a Mon Sep 17 00:00:00 2001 From: Mira <42539014+MiraHell@users.noreply.github.com> Date: Thu, 6 Feb 2025 17:40:55 +0300 Subject: [PATCH] Add debug research notes (#28074) * debug research notes * delete /obj/item/research * remove researchnotes type --- code/datums/outfits/outfit_debug.dm | 7 +++++++ code/game/objects/items/weapons/stock_parts.dm | 6 ------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/code/datums/outfits/outfit_debug.dm b/code/datums/outfits/outfit_debug.dm index 559c9b8b9a2..f4d2d5ae57f 100644 --- a/code/datums/outfits/outfit_debug.dm +++ b/code/datums/outfits/outfit_debug.dm @@ -272,6 +272,12 @@ /obj/item/storage/box/debug/debugtools name = "debug tools" +/obj/item/paper/debug_research + name = "debug reseach notes" + desc = "Your brain is melting just from looking at this endless knowledge." + info = "Information written here is beyond your understanding" + origin_tech = "materials=10;engineering=10;plasmatech=10;powerstorage=10;bluespace=10;biotech=10;combat=10;magnets=10;programming=10;toxins=10;syndicate=10;abductor=10" + /obj/item/storage/box/debug/debugtools/populate_contents() new /obj/item/card/emag(src) new /obj/item/rcd/combat/admin(src) @@ -284,6 +290,7 @@ new /obj/item/storage/box/debug/misc_debug(src) new /obj/item/storage/box/centcomofficer(src) new /obj/item/radio/uplink/admin(src) + new /obj/item/paper/debug_research(src) /obj/item/storage/box/debug/material name = "box of materials" diff --git a/code/game/objects/items/weapons/stock_parts.dm b/code/game/objects/items/weapons/stock_parts.dm index 5f8d009af33..1970b9453ee 100644 --- a/code/game/objects/items/weapons/stock_parts.dm +++ b/code/game/objects/items/weapons/stock_parts.dm @@ -283,9 +283,3 @@ rating = 4 materials = list(MAT_METAL=80) -/obj/item/research//Makes testing much less of a pain -Sieve - name = "research" - icon = 'icons/obj/stock_parts.dmi' - icon_state = "capacitor" - desc = "A debug item for research." - origin_tech = "materials=8;programming=8;magnets=8;powerstorage=8;bluespace=8;combat=8;biotech=8;syndicate=8;engineering=8;plasmatech=8;abductor=8"