Files
Aurora.3/code/datums/uplink/implants.dm
RustingWithYou 0c5ea41216 Hivenet Electronic Warfare + Black K'ois Tweaks (#17234)
* hivenet emergency transmission

* no phoron + harder to remove

* a fuckton of stuff

* hive verbs

* hive admin verbs

* admin verbs again

* encrypt

* mute

* Camera Access, Neural Shock & More

* electronic warfare

* changelog

* changelog 2

* more changelog updates

* Update code/game/objects/items/devices/traitordevices.dm

Co-authored-by: Cody Brittain <cbrittain10@yahoo.com>

* Update html/changelogs/RustingWithYou - willofthequeens.yml

Co-authored-by: Cody Brittain <cbrittain10@yahoo.com>

* test failures begone

* ok, now test failures begone

* addresses requested changes

* more requested changes

* missing span classes

* fullshield

* traits!

* addresses requested changes

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
Update code/modules/mob/living/carbon/carbon.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
Update code/modules/organs/subtypes/vaurca.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
Update code/modules/organs/subtypes/vaurca.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
Update code/modules/organs/subtypes/vaurca.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
Update code/modules/organs/subtypes/vaurca.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
Update code/modules/organs/subtypes/vaurca.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
Update code/modules/admin/topic.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
addresses requested changes

* Update code/modules/mob/living/carbon/human/human_powers.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* Update code/modules/organs/subtypes/vaurca.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* hivenet checks to proc, admin socket to var

* Update code/modules/organs/subtypes/vaurca.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* Update code/modules/organs/subtypes/vaurca.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* parasite.dm span fixes

* spacing

* purge a couple unnecessary returns

* fuck your spaces

* dominia is right bots should be destroyed

---------

Co-authored-by: Cody Brittain <cbrittain10@yahoo.com>
Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
2023-09-27 09:19:00 +00:00

63 lines
2.4 KiB
Plaintext

/***********
* Implants *
***********/
/datum/uplink_item/item/implants
category = /datum/uplink_category/implants
/datum/uplink_item/item/implants/imp_freedom
name = "Freedom Implant"
telecrystal_cost = 1
desc = "A box containing a freedom implant case and implanter."
path = /obj/item/storage/box/syndie_kit/imp_freedom
/datum/uplink_item/item/implants/imp_emp
name = "EMP Implant"
telecrystal_cost = 1
desc = "A box containing an EMP implant case and implanter."
path = /obj/item/storage/box/syndie_kit/imp_emp
/datum/uplink_item/item/implants/imp_explosive
name = "Explosive Implant (DANGER!)"
bluecrystal_cost = 3
desc = "A box containing an explosive implant case and implanter. Use the implant case with the implant pad to set the explosion size, trigger phrase, and trigger code."
path = /obj/item/storage/box/syndie_kit/imp_explosive
/datum/uplink_item/item/implants/imp_deadman
name = "Deadman Implant (DANGER!)"
bluecrystal_cost = 3
desc = "A box containing an explosive implant and implanter. The implant monitors vitals and will detonate when the subject dies."
path = /obj/item/storage/box/syndie_kit/imp_deadman
/datum/uplink_item/item/implants/imp_uplink
name = "Uplink Implant"
path = /obj/item/implanter/uplink
/datum/uplink_item/item/implants/imp_uplink/New()
..()
telecrystal_cost = round(DEFAULT_TELECRYSTAL_AMOUNT / 2)
desc = "Contains [round((DEFAULT_TELECRYSTAL_AMOUNT / 2) * 0.8)] Telecrystal\s"
/datum/uplink_item/item/implants/aug_combitool
name = "Combitool Augment Implanter"
bluecrystal_cost = 1
desc = "An augment implanter, with the combitool augment."
path = /obj/item/device/augment_implanter/combitool
/datum/uplink_item/item/implants/aug_health_scanner
name = "Health Scanner Augment Implanter"
bluecrystal_cost = 1
desc = "An augment implanter, with the integrated health scanner augment."
path = /obj/item/device/augment_implanter/health_scanner
/datum/uplink_item/item/implants/hiveshield
name = "Vaurca Hivenet Defense Implanter"
bluecrystal_cost = 1
desc = "An augment implanter, with a Hivenet defense augment. ONLY WORKS ON VAURCA!"
path = /obj/item/device/augment_implanter/hivenet_shield
/datum/uplink_item/item/implants/hivewarfare
name = "Vaurca Hivenet Warfare Suite"
bluecrystal_cost = 5
desc = "A augment implanter, with a Hivenet defense augment and electronic warfare suite. ONLY WORKS ON VAURCA!"
path = /obj/item/device/augment_implanter/hivenet_warfare