Merge pull request #6078 from tacoguy7765093/technomancer

Makes only tool arm mounted implants craftable via R&D
This commit is contained in:
Raeschen
2023-07-07 20:00:42 +02:00
committed by GitHub
3 changed files with 31 additions and 1 deletions

View File

@@ -27,7 +27,7 @@
var/radial_name = null // The augment's name in the Radial Menu.
var/radial_state = null // Icon state for the augment's radial icon.
var/aug_cooldown = 30 SECONDS
var/aug_cooldown = 1 SECONDS //CHOMPedit, no reason for it to be 30 seconds, the powerful implants already have their own values
var/cooldown = null
/obj/item/organ/internal/augment/Initialize()

View File

@@ -0,0 +1,29 @@
/datum/design/item/organ/internal/augment/AssembleDesignName()
..()
name = "Biotech implant device prototype ([item_name])"
/datum/design/item/organ/internal/augment/armmounted/hand
desc = "An augment that fits neatly into the hand, useful for determining the usefulness of an object for research."
id = "research_implant"
req_tech = list(TECH_BIO = 5, TECH_MATERIAL = 2)
materials = list(MAT_STEEL = 3000, MAT_GLASS = 3000)
build_path = /obj/item/organ/internal/augment/armmounted/hand
sort_string = "JVACE"
/datum/design/item/organ/internal/augment/armmounted/shoulder/multiple
desc = "A large implant that fits into a subject's arm. It deploys an array of tools by some painful means."
id = "tool_implant"
req_tech = list(TECH_BIO = 5, TECH_MATERIAL = 2, TECH_ENGINEERING = 3)
materials = list(MAT_STEEL = 6000, MAT_GLASS = 6000)
build_path = /obj/item/organ/internal/augment/armmounted/shoulder/multiple
sort_string = "JVACI"
/datum/design/item/organ/internal/augment/armmounted/shoulder/multiple/medical
desc = "A large implant that fits into a subject's arm. It deploys an array of tools by some painful means."
id = "surgical_implant"
req_tech = list(TECH_BIO = 6, TECH_MATERIAL = 4)
materials = list(MAT_STEEL = 6000, MAT_GLASS = 6000, MAT_SILVER = 1000)
build_path = /obj/item/organ/internal/augment/armmounted/shoulder/multiple/medical
sort_string = "JVACJ"

View File

@@ -4719,6 +4719,7 @@
#include "modular_chomp\code\modules\reagents\reagents\medicine.dm"
#include "modular_chomp\code\modules\recycling\v_garbosystem.dm"
#include "modular_chomp\code\modules\research\mechfab_designs.dm"
#include "modular_chomp\code\modules\research\designs\implants.dm"
#include "modular_chomp\code\modules\research\designs\misc.dm"
#include "modular_chomp\code\modules\research\designs\power_cells.dm"
#include "modular_chomp\code\modules\research\designs\weapons.dm"