diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index a795f49ad53..34ef7cbb26e 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -1812,3 +1812,14 @@ starts_with = list( /obj/item/cane/crutch/forearm = 2 ) + +/obj/item/storage/box/unique/freezer/organcooler/mind_blanker + name = "mind blanker cooler" + desc = "A cooling box for mind blankers, which can be surgically implanted to protect the patient from unwanted psionic interference." + color = COLOR_PURPLE_GRAY + illustration = "implant" + starts_with = list(/obj/item/organ/internal/augment/bioaug/mind_blanker = 1) + can_hold = list( + /obj/item/organ/internal/augment/bioaug/mind_blanker + ) + storage_slots = 4 diff --git a/code/modules/cargo/items/medical.dm b/code/modules/cargo/items/medical.dm index 4fea8507f1e..27b55f95a5e 100644 --- a/code/modules/cargo/items/medical.dm +++ b/code/modules/cargo/items/medical.dm @@ -802,3 +802,11 @@ container_type = "crate" groupable = TRUE spawn_amount = 1 + +/singleton/cargo_item/organcooler/mind_blanker + name = "mind blanker cooler" + description = "An organ cooler containing a single Zeng-Hu Mind Blanker. Their cost has been subsidized by ZH for Operation Deep Dive." + price = 500 + items = list( + /obj/item/storage/box/unique/freezer/organcooler/mind_blanker + ) diff --git a/code/modules/client/preference_setup/loadout/items/augments.dm b/code/modules/client/preference_setup/loadout/items/augments.dm index 31408335abe..75c69436e4d 100644 --- a/code/modules/client/preference_setup/loadout/items/augments.dm +++ b/code/modules/client/preference_setup/loadout/items/augments.dm @@ -332,11 +332,12 @@ cost = 1 /datum/gear/augment/mind_blanker - display_name = "Galatean Mind Blanker" - description = "A small, discrete organ attached near the base of the brainstem. Any attempt to read the mind of an individual with this augment installed will fail, as will attempts at psychic brainwashing." + display_name = "ZHP-MSv3 Mind Blanker" + description = "An experimental cranial augmentation based on Galatean bio-engineering and now offered by Zeng-Hu Pharmaceuticals for select consumers. Also known as the Mindshield v3 or \"Mind Blanker\". " \ + + "It consists of a small, discrete organ attached near the base of the brainstem. The mind blanker generates interfering 'anti-signals' in response to incoming psychic signals, effectively blocking the user from being telepathically contacted. " \ + + "Zeng-Hu marketing pitches these radical bioaugs as a peace of mind solution for explorers traveling into the Lemurian Sea, while ignoring or downplaying any concerns of possible deleterious side effects." path = /obj/item/organ/internal/augment/bioaug/mind_blanker - origin_restriction = list(/singleton/origin_item/origin/galatea) - whitelisted = list(SPECIES_HUMAN, SPECIES_HUMAN_OFFWORLD) + whitelisted = list(SPECIES_HUMAN, SPECIES_HUMAN_OFFWORLD, SPECIES_SKRELL, SPECIES_SKRELL_AXIORI, SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI, SPECIES_UNATHI) cost = 2 /datum/gear/augment/mind_blanker_lethal diff --git a/html/changelogs/hellfirejag zeng-hu-mindblanker.yml b/html/changelogs/hellfirejag zeng-hu-mindblanker.yml new file mode 100644 index 00000000000..4c5b6ed185c --- /dev/null +++ b/html/changelogs/hellfirejag zeng-hu-mindblanker.yml @@ -0,0 +1,5 @@ +author: Hellfirejag +delete-after: True +changes: + - rscadd: "Zeng-Hu Pharmaceuticals has now begun offering mind-blanker bioaugs to paying Horizon crew. Non-Galatean psi sensitive species can now buy a mind blanker in their loadout selections." + - rscadd: "Zeng-Hu mind blankers can now be ordered through Cargo."