/
githubmirror
/
vgstation13
Обзор
Документация
Войти
/
githubmirror
/
vgstation13
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
Bleeding-Edge
code/modules/research/designs/boards/computer_command.dm
63 строки
2 KB
Duny
Upload computers now only target silicons on their z-level. Adds long range AI upload. (#18751)
12 июл 2018, 15:06
12 июл 2018, 15:06
824ce2e
Код
Авторство
О чём код?
//Command related computers & consoles. /datum/design/aiupload name = "Circuit Design (AI Upload)" desc = "Allows for the construction of circuit boards used to build an AI Upload Console." id = "aiupload" req_tech = list(Tc_PROGRAMMING = 4) build_type = IMPRINTER materials = list(MAT_GLASS = 2000, SACID = 20) category = "Console Boards" build_path = /obj/item/weapon/circuitboard/aiupload locked = 1 req_lock_access = list(access_rnd, access_robotics, access_rd) /datum/design/aiupload/longrange name = "Circuit Design (Long Range AI Upload)" desc = "Allows for the construction of circuit boards used to build a Long Range AI Upload Console." id = "aiuploadlongrange" req_tech = list(Tc_PROGRAMMING = 4, Tc_MATERIALS = 9, Tc_BLUESPACE = 3, Tc_MAGNETS = 5) materials = list(MAT_GLASS = 2000, SACID = 20) build_path = /obj/item/weapon/circuitboard/aiupload/longrange /datum/design/borgupload name = "Circuit Design (Cyborg Upload)" desc = "Allows for the construction of circuit boards used to build a Cyborg Upload Console." id = "borgupload" req_tech = list(Tc_PROGRAMMING = 4) build_type = IMPRINTER materials = list(MAT_GLASS = 2000, SACID = 20) category = "Console Boards" build_path = /obj/item/weapon/circuitboard/borgupload locked = 1 req_lock_access = list(access_rnd, access_robotics, access_rd) /datum/design/comconsole name = "Circuit Design (Communications)" desc = "Allows for the construction of circuit boards used to build a communications console." id = "comconsole" req_tech = list(Tc_PROGRAMMING = 2, Tc_MAGNETS = 2) build_type = IMPRINTER materials = list(MAT_GLASS = 2000, SACID = 20) category = "Console Boards" build_path = /obj/item/weapon/circuitboard/communications /datum/design/idcardconsole name = "Circuit Design (ID Computer)" desc = "Allows for the construction of circuit boards used to build an ID computer." id = "idcardconsole" req_tech = list(Tc_PROGRAMMING = 2) build_type = IMPRINTER materials = list(MAT_GLASS = 2000, SACID = 20) category = "Console Boards" build_path = /obj/item/weapon/circuitboard/card /datum/design/teleconsole name = "Circuit Design (Teleporter Console)" desc = "Allows for the construction of circuit boards used to build a teleporter control console." id = "teleconsole" req_tech = list(Tc_PROGRAMMING = 3, Tc_BLUESPACE = 2) build_type = IMPRINTER materials = list(MAT_GLASS = 2000, SACID = 20) category = "Console Boards" build_path = /obj/item/weapon/circuitboard/teleporter