Files
Hatterhat f057705c4f machine board naming convention pass (#88888)
## About The Pull Request
Adjusts a bunch of machine board names to comply with the general
machine board naming patterns I see.

First pass just removed a bunch of errant (Machine Board)s that were
still on board names despite them being automatically appended on
initialization, second pass set some board designs to actually have
"Board" on the end to specify that it's a board and not a whole machine.
## Why It's Good For The Game
Machine board naming consistency is probably good, actually.

## Changelog

🆑
spellcheck: A handful of machine boards should no longer have two
(Machine Board)s showing up in their name.
spellcheck: Boulder machinery boards are now labeled as boards from
autolathes/circuit imprinters.
/🆑

---------

Co-authored-by: Hatterhat <Hatterhat@users.noreply.github.com>
2025-01-14 15:54:24 +01:00

33 lines
1.1 KiB
Plaintext

// Autolathe-able circuitboards for starting with boulder processing machines.
/datum/design/board/smelter
name = "Boulder Smelter Board"
desc = "A circuitboard for a boulder smelter. Lowtech enough to be printed from the lathe."
id = "b_smelter"
build_type = AUTOLATHE
materials = list(
/datum/material/glass = SHEET_MATERIAL_AMOUNT,
/datum/material/iron = SHEET_MATERIAL_AMOUNT,
)
build_path = /obj/item/circuitboard/machine/smelter
category = list(
RND_CATEGORY_INITIAL,
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_CARGO,
)
departmental_flags = DEPARTMENT_BITFLAG_CARGO
/datum/design/board/refinery
name = "Boulder Refinery Board"
desc = "A circuitboard for a boulder refinery. Lowtech enough to be printed from the lathe."
id = "b_refinery"
build_type = AUTOLATHE
materials = list(
/datum/material/glass = SHEET_MATERIAL_AMOUNT,
/datum/material/iron = SHEET_MATERIAL_AMOUNT,
)
build_path = /obj/item/circuitboard/machine/refinery
category = list(
RND_CATEGORY_INITIAL,
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_CARGO,
)
departmental_flags = DEPARTMENT_BITFLAG_CARGO