mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 04:27:35 +01:00
Renames all typepaths + names of implants to biochips (#23172)
* The fix * Contraaaaaa * Fixes CI * Fixes the pads + cases * Uplink datums * Update code/datums/mind.dm Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> * Update code/__HELPERS/unsorted.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Update code/modules/research/designs/medical_designs.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Update code/modules/research/designs/medical_designs.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Update code/modules/research/designs/medical_designs.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Update code/modules/research/designs/medical_designs.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Update code/modules/surgery/implant_removal.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Outfits now use a proper variable name * Fixes surgery (oops) * More .dme changes * Renames the folder * Fixes bad merge * Contra review * Update code/game/objects/items/weapons/dice.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Fixes CI fail --------- Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
This commit is contained in:
co-authored by
Burzah
Contrabang
S34N
parent
fad6509b5e
commit
382a71df0d
@@ -740,50 +740,50 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
|
||||
|
||||
// IMPLANTS
|
||||
|
||||
/datum/uplink_item/implants
|
||||
category = "Implants"
|
||||
/datum/uplink_item/bio_chips
|
||||
category = "Bio-chips"
|
||||
|
||||
/datum/uplink_item/implants/freedom
|
||||
/datum/uplink_item/bio_chips/freedom
|
||||
name = "Freedom Bio-chip"
|
||||
desc = "A bio-chip injected into the body and later activated manually to break out of any restraints or grabs. Can be activated up to 4 times."
|
||||
reference = "FI"
|
||||
item = /obj/item/implanter/freedom
|
||||
item = /obj/item/bio_chip_implanter/freedom
|
||||
cost = 25
|
||||
|
||||
/datum/uplink_item/implants/protofreedom
|
||||
/datum/uplink_item/bio_chips/protofreedom
|
||||
name = "Prototype Freedom Bio-chip"
|
||||
desc = "A prototype bio-chip injected into the body and later activated manually to break out of any restraints or grabs. Can only be activated a singular time."
|
||||
reference = "PFI"
|
||||
item = /obj/item/implanter/freedom/prototype
|
||||
item = /obj/item/bio_chip_implanter/freedom/prototype
|
||||
cost = 10
|
||||
|
||||
/datum/uplink_item/implants/storage
|
||||
/datum/uplink_item/bio_chips/storage
|
||||
name = "Storage Bio-chip"
|
||||
desc = "A bio-chip injected into the body, and later activated at the user's will. It will open a small subspace pocket capable of storing two items."
|
||||
reference = "ESI"
|
||||
item = /obj/item/implanter/storage
|
||||
item = /obj/item/bio_chip_implanter/storage
|
||||
cost = 40
|
||||
|
||||
/datum/uplink_item/implants/mindslave
|
||||
/datum/uplink_item/bio_chips/mindslave
|
||||
name = "Mindslave Bio-chip"
|
||||
desc = "A box containing a bio-chip implanter filled with a mindslave bio-chip that when injected into another person makes them loyal to you and your cause, unless of course they're already implanted by someone else. Loyalty ends if the implant is no longer in their system."
|
||||
reference = "MI"
|
||||
item = /obj/item/implanter/traitor
|
||||
item = /obj/item/bio_chip_implanter/traitor
|
||||
cost = 50
|
||||
|
||||
/datum/uplink_item/implants/adrenal
|
||||
/datum/uplink_item/bio_chips/adrenal
|
||||
name = "Adrenal Bio-chip"
|
||||
desc = "A bio-chip injected into the body, and later activated manually to inject a chemical cocktail, which has a mild healing effect along with removing and reducing the time of all stuns and increasing movement speed. Can be activated up to 3 times."
|
||||
reference = "AI"
|
||||
item = /obj/item/implanter/adrenalin
|
||||
item = /obj/item/bio_chip_implanter/adrenalin
|
||||
cost = 40
|
||||
|
||||
/datum/uplink_item/implants/stealthimplant
|
||||
/datum/uplink_item/bio_chips/stealthimplant
|
||||
name = "Stealth Bio-chip"
|
||||
desc = "This one-of-a-kind implant will make you almost invisible if you play your cards right. \
|
||||
On activation, it will conceal you inside a chameleon cardboard box that is only revealed once someone bumps into it."
|
||||
reference = "SI"
|
||||
item = /obj/item/implanter/stealth
|
||||
item = /obj/item/bio_chip_implanter/stealth
|
||||
cost = 45
|
||||
|
||||
// POINTLESS BADASSERY
|
||||
|
||||
@@ -508,35 +508,35 @@
|
||||
|
||||
// IMPLANTS
|
||||
|
||||
/datum/uplink_item/implants/krav_implant
|
||||
/datum/uplink_item/bio_chips/krav_implant
|
||||
name = "Krav Maga Implant"
|
||||
desc = "A biochip that teaches you Krav Maga when implanted, great as a cheap backup weapon. Warning: the biochip will override any other fighting styles such as CQC while active."
|
||||
reference = "KMI"
|
||||
item = /obj/item/implanter/krav_maga
|
||||
item = /obj/item/bio_chip_implanter/krav_maga
|
||||
cost = 25
|
||||
uplinktypes = list(UPLINK_TYPE_NUCLEAR, UPLINK_TYPE_SST)
|
||||
|
||||
/datum/uplink_item/implants/uplink/nuclear
|
||||
/datum/uplink_item/bio_chips/uplink/nuclear
|
||||
name = "Nuclear Uplink Bio-chip"
|
||||
reference = "UIN"
|
||||
item = /obj/item/implanter/nuclear
|
||||
item = /obj/item/bio_chip_implanter/nuclear
|
||||
excludefrom = list()
|
||||
uplinktypes = list(UPLINK_TYPE_NUCLEAR, UPLINK_TYPE_SST)
|
||||
|
||||
/datum/uplink_item/implants/microbomb
|
||||
/datum/uplink_item/bio_chips/microbomb
|
||||
name = "Microbomb Bio-chip"
|
||||
desc = "A bio-chip injected into the body, and later activated either manually or automatically upon death. The more implants inside of you, the higher the explosive power. \
|
||||
This will permanently destroy your body, however."
|
||||
reference = "MBI"
|
||||
item = /obj/item/implanter/explosive
|
||||
item = /obj/item/bio_chip_implanter/explosive
|
||||
cost = 10
|
||||
uplinktypes = list(UPLINK_TYPE_NUCLEAR, UPLINK_TYPE_SST)
|
||||
|
||||
/datum/uplink_item/implants/macrobomb
|
||||
/datum/uplink_item/bio_chips/macrobomb
|
||||
name = "Macrobomb Bio-chip"
|
||||
desc = "A bio-chip injected into the body, and later activated either manually or automatically upon death. Upon death, releases a massive explosion that will wipe out everything nearby."
|
||||
reference = "HAB"
|
||||
item = /obj/item/implanter/explosive_macro
|
||||
item = /obj/item/bio_chip_implanter/explosive_macro
|
||||
cost = 50
|
||||
uplinktypes = list(UPLINK_TYPE_NUCLEAR, UPLINK_TYPE_SST)
|
||||
|
||||
|
||||
@@ -290,7 +290,7 @@
|
||||
desc = "A single-use bio-chip which contains an experimental serum that causes rapid muscular growth in Hominidae. \
|
||||
Side-affects may include hypertrichosis, violent outbursts, and an unending affinity for bananas."
|
||||
reference = "MAG"
|
||||
item = /obj/item/implanter/gorilla_rampage
|
||||
item = /obj/item/bio_chip_implanter/gorilla_rampage
|
||||
cost = 25
|
||||
job = list("Research Director", "Geneticist")
|
||||
|
||||
@@ -340,7 +340,7 @@
|
||||
name = "Synthetic Supercharge Bio-chip"
|
||||
desc = "A bio-chip injected into the body, and later activated manually to inject a chemical cocktail, which has the effect of removing and reducing the time of all stuns and increasing movement speed. Can be activated up to 3 times."
|
||||
reference = "SSI"
|
||||
item = /obj/item/implanter/supercharge
|
||||
item = /obj/item/bio_chip_implanter/supercharge
|
||||
cost = 40
|
||||
species = list("Machine")
|
||||
surplus = 0
|
||||
@@ -506,11 +506,11 @@
|
||||
surplus = 60
|
||||
excludefrom = list(UPLINK_TYPE_NUCLEAR, UPLINK_TYPE_SST)
|
||||
|
||||
/datum/uplink_item/implants/uplink // Nukies get Nuclear Uplink Bio-chip instead
|
||||
/datum/uplink_item/bio_chips/uplink // Nukies get Nuclear Uplink Bio-chip instead
|
||||
name = "Uplink Bio-chip"
|
||||
desc = "A bio-chip injected into the body, and later activated manually to open an uplink with 50 telecrystals. The ability for an agent to open an uplink after their possessions have been stripped from them makes this implant excellent for escaping confinement."
|
||||
reference = "UI"
|
||||
item = /obj/item/implanter/uplink
|
||||
item = /obj/item/bio_chip_implanter/uplink
|
||||
cost = 70
|
||||
excludefrom = list(UPLINK_TYPE_NUCLEAR, UPLINK_TYPE_SST)
|
||||
surplus = 0
|
||||
|
||||
Reference in New Issue
Block a user