mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-13 03:02:38 +00:00
* Moved data disks to lathes (#84516) ## About The Pull Request Moved all 3 versions of data disks to protolathe and autolathe. ## Why It's Good For The Game It was confusing that you can't print it in lathe and they were considered circuitboards. ## Changelog 🆑 qol: Data disks are now printed in lathes instead of circuit imprinter /🆑 * Moved data disks to lathes --------- Co-authored-by: Andrew <mt.forspam@gmail.com>
40 lines
1.5 KiB
Plaintext
40 lines
1.5 KiB
Plaintext
////////////////////////////////////////
|
|
///////////Computer Parts///////////////
|
|
////////////////////////////////////////
|
|
// Data disks
|
|
/datum/design/portabledrive/basic
|
|
name = "Data Disk"
|
|
id = "portadrive_basic"
|
|
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE
|
|
materials = list(/datum/material/glass = SHEET_MATERIAL_AMOUNT)
|
|
build_path = /obj/item/computer_disk
|
|
category = list(
|
|
RND_CATEGORY_INITIAL,
|
|
RND_CATEGORY_MODULAR_COMPUTERS + RND_SUBCATEGORY_MODULAR_COMPUTERS_PARTS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_ENGINEERING
|
|
|
|
/datum/design/portabledrive/advanced
|
|
name = "Advanced Data Disk"
|
|
id = "portadrive_advanced"
|
|
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE
|
|
materials = list(/datum/material/glass = SHEET_MATERIAL_AMOUNT * 2)
|
|
build_path = /obj/item/computer_disk/advanced
|
|
category = list(
|
|
RND_CATEGORY_INITIAL,
|
|
RND_CATEGORY_MODULAR_COMPUTERS + RND_SUBCATEGORY_MODULAR_COMPUTERS_PARTS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_ENGINEERING
|
|
|
|
/datum/design/portabledrive/super
|
|
name = "Super Data Disk"
|
|
id = "portadrive_super"
|
|
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE
|
|
materials = list(/datum/material/glass = SHEET_MATERIAL_AMOUNT * 4)
|
|
build_path = /obj/item/computer_disk/super
|
|
category = list(
|
|
RND_CATEGORY_INITIAL,
|
|
RND_CATEGORY_MODULAR_COMPUTERS + RND_SUBCATEGORY_MODULAR_COMPUTERS_PARTS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_ENGINEERING
|