diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 9123843cb17..6968063f597 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -425,6 +425,12 @@ var/list/uplink_items = list() item = /obj/item/weapon/storage/backpack/satchel_flat cost = 2 +/datum/uplink_item/stealthy_tools/smdrill + name = "Supermatter Drill" + desc = "A pocket-sized drill tipped with nanoscopic supermatter crystals, able to cut through reinforced walls." + item = /obj/item/weapon/pickaxe/diamonddrill/traitor + cost = 6 + // DEVICE AND TOOLS /datum/uplink_item/device_tools diff --git a/code/modules/mining/mine_items.dm b/code/modules/mining/mine_items.dm index 35be416e8f1..0c6fed16571 100644 --- a/code/modules/mining/mine_items.dm +++ b/code/modules/mining/mine_items.dm @@ -131,6 +131,13 @@ origin_tech = "materials=6;powerstorage=4;engineering=5" desc = "Yours is the drill that will pierce the heavens!" + traitor //Pocket-sized traitor diamond drill. + name = "supermatter drill" + icon_state = "smdrill" + origin_tech = "materials=6;powerstorage=4;engineering=5;syndicate=3" + desc = "Microscopic supermatter crystals cover the head of this tiny drill." + w_class = 2.0 + borgdrill name = "cyborg mining drill" icon_state = "diamonddrill" diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index 5b70d7d8116..c7ce5d4d65c 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ