Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions code/game/objects/structures/crates_lockers/crates/secure.dm
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@
icon_state = "scisecurecrate"
base_icon_state = "scisecurecrate"

/obj/structure/closet/crate/secure/ai
name = "secure artificial intelligence crate"
desc = "A crate with a lock on it, painted in the scheme of the station's research director."
icon_state = "aicrate"
base_icon_state = "aicrate"

/obj/structure/closet/crate/secure/owned
name = "private crate"
desc = "A crate cover designed to only open for who purchased its contents."
Expand Down
13 changes: 13 additions & 0 deletions code/modules/cargo/packs/science.dm
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,16 @@
desc = "Two analysis bins, to analyze artifacts. For those who research a lot of artifacts."
cost = CARGO_CRATE_VALUE * 4
contains = list(/obj/item/analysis_bin = 2)

/datum/supply_pack/science/silicon_upload
name = "Silicon Upload Boards Crate"
desc = "A back-up set of upload boards for when the station's silicons are improperly lawed. \
Contains an AI and cyborg upload board."
cost = CARGO_CRATE_VALUE * 10
access = ACCESS_AI_UPLOAD
contains = list(/obj/item/circuitboard/computer/aiupload = 1,
/obj/item/circuitboard/computer/borgupload = 1,
)
crate_name = "\improper silicon upload board crate"
crate_type = /obj/structure/closet/crate/secure/ai
dangerous = TRUE
3 changes: 3 additions & 0 deletions code/modules/research/designs/comp_board_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
)
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_ENGINEERING //Monkestation edit: Engi circuit

// Upload boards moved to a cargo order.
/*
/datum/design/board/aiupload
name = "AI Upload Board"
desc = "Allows for the construction of circuit boards used to build an AI Upload Console."
Expand All @@ -67,6 +69,7 @@
RND_CATEGORY_COMPUTER + RND_SUBCATEGORY_COMPUTER_ROBOTICS
)
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_ENGINEERING //Monkestation edit: Engi circuit
*/

/datum/design/board/med_data
name = "Medical Records Board"
Expand Down
1 change: 0 additions & 1 deletion code/modules/research/techweb/cyborg_nodes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"borg_suit",
"borg_upgrade_rename",
"borg_upgrade_restart",
"borgupload",
"cyborgrecharger",
"mmi",
"robocontrol",
Expand Down
1 change: 0 additions & 1 deletion code/modules/research/techweb/robo_nodes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
"intellicard",
"mecha_tracking_ai_control",
"aifixer",
"aiupload",
"reset_module",
"asimov_module",
"default_module",
Expand Down
Binary file modified icons/obj/storage/crates.dmi
Binary file not shown.
Loading