From 9556c9de9102b0bb6cb691d78eabe937c280ec28 Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Mon, 16 Oct 2023 13:26:57 -0400 Subject: [PATCH] Removes exile implants and the corresponding crate (#22543) * goodbye exile * nuked --- .../items/weapons/implants/implant_exile.dm | 30 ------------------- .../items/weapons/implants/implantfluff.dm | 6 ---- .../objects/items/weapons/storage/boxes.dm | 10 ------- .../supply/supply_packs/pack_security.dm | 6 ---- paradise.dme | 1 - 5 files changed, 53 deletions(-) delete mode 100644 code/game/objects/items/weapons/implants/implant_exile.dm diff --git a/code/game/objects/items/weapons/implants/implant_exile.dm b/code/game/objects/items/weapons/implants/implant_exile.dm deleted file mode 100644 index bf03211cd63..00000000000 --- a/code/game/objects/items/weapons/implants/implant_exile.dm +++ /dev/null @@ -1,30 +0,0 @@ -//Exile implants will allow you to use the station gate, but not return home. -//This will allow security to exile badguys/for badguys to exile their kill targets -/obj/item/implant/exile - name = "exile bio-chip" - desc = "Prevents you from returning from away missions" - origin_tech = "materials=2;biotech=3;magnets=2;bluespace=3" - activated = BIOCHIP_ACTIVATED_PASSIVE - implant_data = /datum/implant_fluff/exile - implant_state = "implant-nanotrasen" - -/obj/item/implanter/exile - name = "bio-chip implanter (exile)" - implant_type = /obj/item/implant/exile - -/obj/item/implantcase/exile - name = "bio-chip case - 'Exile'" - desc = "A glass case containing an exile bio-chip." - implant_type = /obj/item/implant/exile - -/obj/structure/closet/secure_closet/exile - name = "exile bio-chips" - req_access = list(ACCESS_ARMORY) - -/obj/structure/closet/secure_closet/exile/populate_contents() - new /obj/item/implanter/exile(src) - new /obj/item/implantcase/exile(src) - new /obj/item/implantcase/exile(src) - new /obj/item/implantcase/exile(src) - new /obj/item/implantcase/exile(src) - new /obj/item/implantcase/exile(src) diff --git a/code/game/objects/items/weapons/implants/implantfluff.dm b/code/game/objects/items/weapons/implants/implantfluff.dm index 46df0f641a2..8a613070cfb 100644 --- a/code/game/objects/items/weapons/implants/implantfluff.dm +++ b/code/game/objects/items/weapons/implants/implantfluff.dm @@ -51,12 +51,6 @@ notes = "An minituarized nuclear squib fit snuggly into a bio-chip." function = "Upon detonization the bio-chip will release an EMP affecting the immediate area around the user." -/datum/implant_fluff/exile - name = "Nanotrasen Employee Exile Bio-chip" - life = "Known to last up to 3 to 4 years." - notes = "The onboard station gateway system has been modified to reject entry by individuals containing this bio-chip." - function = "Prevents the user from reentering the station through the gateway.... alive." - /datum/implant_fluff/explosive name = "Cybersun Industries RX-78 Employee Management Bio-chip" life = "Destroyed upon activation." diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 571c6f285e2..04201355428 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -294,16 +294,6 @@ new /obj/item/implanter(src) new /obj/item/implantpad(src) -/obj/item/storage/box/exileimp - name = "boxed exile bio-chip kit" - desc = "Box of exile bio-chips. It has a picture of a clown being booted through the Gateway." - icon_state = "implant" - -/obj/item/storage/box/exileimp/populate_contents() - for(var/I in 1 to 5) - new /obj/item/implantcase/exile(src) - new /obj/item/implanter(src) - /obj/item/storage/box/deathimp name = "death alarm bio-chip kit" desc = "Box of life sign monitoring bio-chips." diff --git a/code/modules/supply/supply_packs/pack_security.dm b/code/modules/supply/supply_packs/pack_security.dm index b5c726685ef..f6e26bb1a44 100644 --- a/code/modules/supply/supply_packs/pack_security.dm +++ b/code/modules/supply/supply_packs/pack_security.dm @@ -300,12 +300,6 @@ cost = 500 containername = "chemical bio-chip crate" -/datum/supply_packs/security/armory/exileimp - name = "Exile Bio-chips Crate" - contains = list (/obj/item/storage/box/exileimp) - cost = 600 - containername = "exile bio-chip crate" - /datum/supply_packs/security/securitybarriers name = "Security Barriers Crate" contains = list(/obj/item/grenade/barrier, diff --git a/paradise.dme b/paradise.dme index ea052dabf96..72e63aaad85 100644 --- a/paradise.dme +++ b/paradise.dme @@ -1117,7 +1117,6 @@ #include "code\game\objects\items\weapons\implants\implant_death_alarm.dm" #include "code\game\objects\items\weapons\implants\implant_dust.dm" #include "code\game\objects\items\weapons\implants\implant_emp.dm" -#include "code\game\objects\items\weapons\implants\implant_exile.dm" #include "code\game\objects\items\weapons\implants\implant_explosive.dm" #include "code\game\objects\items\weapons\implants\implant_freedom.dm" #include "code\game\objects\items\weapons\implants\implant_gorilla_rampage.dm"