forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split the large autolathe design file (tgstation#72436)
## About The Why It's Good For The Game Pull Request Splits up the large autolathe design file because I was getting annoyed trying to add things. It was almost 2k lines. ## Changelog Nothing player-facing Co-authored-by: tattle <[email protected]>
- Loading branch information
1 parent
a21ae8d
commit 8ef6d18
Showing
8 changed files
with
1,923 additions
and
1,924 deletions.
There are no files selected for viewing
313 changes: 313 additions & 0 deletions
313
code/modules/research/designs/autolathe/engineering_designs.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,313 @@ | ||
/datum/design/solar | ||
name = "Solar Panel Frame" | ||
id = "solar_panel" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 3500, /datum/material/glass = 1000) | ||
build_path = /obj/item/solar_assembly | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MOUNTS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/tracker_electronics | ||
name = "Solar Tracking Electronics" | ||
id = "solar_tracker" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 100, /datum/material/glass = 500) | ||
build_path = /obj/item/electronics/tracker | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_ELECTRONICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/control | ||
name = "Blast Door Controller" | ||
id = "blast" | ||
build_type = PROTOLATHE | AWAY_LATHE | AUTOLATHE | ||
materials = list(/datum/material/iron = 100, /datum/material/glass = 50) | ||
build_path = /obj/item/assembly/control | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_ELECTRONICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/custom_vendor_refill | ||
name = "Custom Vendor Refill" | ||
id = "custom_vendor_refill" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 5000, /datum/material/glass = 2000) | ||
build_path = /obj/item/vending_refill/custom | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_STOCK_PARTS + RND_SUBCATEGORY_STOCK_PARTS_MISC, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
|
||
/datum/design/miniature_power_cell | ||
name = "Light Fixture Battery" | ||
id = "miniature_power_cell" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/glass = 20) | ||
build_path = /obj/item/stock_parts/cell/emergency_light | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_LIGHTING, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/geiger | ||
name = "Geiger Counter" | ||
id = "geigercounter" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 150, /datum/material/glass = 150) | ||
build_path = /obj/item/geiger_counter | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ENGINEERING, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/turret_control_frame | ||
name = "Turret Control Frame" | ||
id = "turret_control" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 12000) | ||
build_path = /obj/item/wallframe/turret_control | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MOUNTS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/large_welding_tool | ||
name = "Industrial Welding Tool" | ||
id = "large_welding_tool" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 70, /datum/material/glass = 60) | ||
build_path = /obj/item/weldingtool/largetank/empty | ||
category = list( | ||
RND_CATEGORY_HACKED, | ||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ENGINEERING, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/camera_assembly | ||
name = "Camera Assembly" | ||
id = "camera_assembly" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 400, /datum/material/glass = 250) | ||
build_path = /obj/item/wallframe/camera | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MOUNTS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/newscaster_frame | ||
name = "Newscaster Frame" | ||
id = "newscaster_frame" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 14000, /datum/material/glass = 8000) | ||
build_path = /obj/item/wallframe/newscaster | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MOUNTS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/status_display_frame | ||
name = "Status Display Frame" | ||
id = "status_display_frame" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 14000, /datum/material/glass = 8000) | ||
build_path = /obj/item/wallframe/status_display | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MOUNTS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
|
||
/datum/design/intercom_frame | ||
name = "Intercom Frame" | ||
id = "intercom_frame" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 75, /datum/material/glass = 25) | ||
build_path = /obj/item/wallframe/intercom | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_MOUNTS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/earmuffs | ||
name = "Earmuffs" | ||
id = "earmuffs" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 500, /datum/material/glass = 500) | ||
build_path = /obj/item/clothing/ears/earmuffs | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_EQUIPMENT + RND_SUBCATEGORY_EQUIPMENT_ENGINEERING, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/pipe_painter | ||
name = "Pipe Painter" | ||
id = "pipe_painter" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 5000, /datum/material/glass = 2000) | ||
build_path = /obj/item/pipe_painter | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ENGINEERING, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/airlock_painter | ||
name = "Airlock Painter" | ||
id = "airlock_painter" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 50, /datum/material/glass = 50) | ||
build_path = /obj/item/airlock_painter | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ENGINEERING, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/airlock_painter/decal | ||
name = "Decal Painter" | ||
id = "decal_painter" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 50, /datum/material/glass = 50) | ||
build_path = /obj/item/airlock_painter/decal | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ENGINEERING, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/airlock_painter/decal/tile | ||
name = "Tile Sprayer" | ||
id = "tile_sprayer" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 50, /datum/material/glass = 50) | ||
build_path = /obj/item/airlock_painter/decal/tile | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ENGINEERING, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/apc_board | ||
name = "APC Module" | ||
id = "power_control" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 100, /datum/material/glass = 100) | ||
build_path = /obj/item/electronics/apc | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_ELECTRONICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/airlock_board | ||
name = "Airlock Electronics" | ||
id = "airlock_board" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 50, /datum/material/glass = 50) | ||
build_path = /obj/item/electronics/airlock | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_ELECTRONICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/firelock_board | ||
name = "Firelock Circuitry" | ||
id = "firelock_board" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 50, /datum/material/glass = 50) | ||
build_path = /obj/item/electronics/firelock | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_ELECTRONICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/airalarm_electronics | ||
name = "Air Alarm Electronics" | ||
id = "airalarm_electronics" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 50, /datum/material/glass = 50) | ||
build_path = /obj/item/electronics/airalarm | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_ELECTRONICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/firealarm_electronics | ||
name = "Fire Alarm Electronics" | ||
id = "firealarm_electronics" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 50, /datum/material/glass = 50) | ||
build_path = /obj/item/electronics/firealarm | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_ELECTRONICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/trapdoor_electronics | ||
name = "Trapdoor Controller Electronics" | ||
id = "trapdoor_electronics" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 50, /datum/material/glass = 50) | ||
build_path = /obj/item/assembly/trapdoor | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_CONSTRUCTION + RND_SUBCATEGORY_CONSTRUCTION_ELECTRONICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/extinguisher | ||
name = "Fire Extinguisher" | ||
id = "extinguisher" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 90) | ||
build_path = /obj/item/extinguisher/empty | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ATMOSPHERICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/pocketfireextinguisher | ||
name = "Pocket Fire Extinguisher" | ||
id = "pocketfireextinguisher" | ||
build_type = AUTOLATHE | PROTOLATHE | AWAY_LATHE | ||
materials = list(/datum/material/iron = 50, /datum/material/glass = 40) | ||
build_path = /obj/item/extinguisher/mini/empty | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ATMOSPHERICS, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | ||
|
||
/datum/design/tscanner | ||
name = "T-Ray Scanner" | ||
id = "tscanner" | ||
build_type = AUTOLATHE | ||
materials = list(/datum/material/iron = 150) | ||
build_path = /obj/item/t_scanner | ||
category = list( | ||
RND_CATEGORY_INITIAL, | ||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_ENGINEERING, | ||
) | ||
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING |
Oops, something went wrong.