Skip to content

Commit

Permalink
circuits
Browse files Browse the repository at this point in the history
  • Loading branch information
SECBATON-GRIFFON committed Dec 31, 2024
1 parent 0b9d06c commit 4ba7bf5
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
11 changes: 11 additions & 0 deletions code/game/mecha/mecha_parts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,17 @@
name = "Circuit board (Clarke Central Control module)"
icon_state = "mainboard"

/obj/item/weapon/circuitboard/mecha/roswell
origin_tech = Tc_PROGRAMMING + "=3" + Tc_ALIEN + "=5"

/obj/item/weapon/circuitboard/mecha/roswell/peripherals
name = "Circuit board (Roswell Peripherals Control module)"
icon_state = "mcontroller"

/obj/item/weapon/circuitboard/mecha/roswell/main
name = "Circuit board (Roswell Central Control module)"
icon_state = "mainboard"

/obj/item/weapon/circuitboard/mecha/pod
name = "Circuit board (Space Pod Mainboard)"
icon_state = "mainboard"
24 changes: 23 additions & 1 deletion code/modules/research/designs/mecha/boards.dm
Original file line number Diff line number Diff line change
Expand Up @@ -212,4 +212,26 @@
build_type = IMPRINTER
materials = list(MAT_GLASS = 2000, SACID = 20)
category = "Mecha Boards"
build_path = /obj/item/weapon/circuitboard/mecha/honker/targeting
build_path = /obj/item/weapon/circuitboard/mecha/honker/targeting

//ROSWELL

/datum/design/roswell_main
name = "Circuit Design (\"Roswell\" Central Control module)"
desc = "Allows for the construction of a \"Roswell\" Central Control module."
id = "roswell_main"
req_tech = list(Tc_PROGRAMMING = 3, Tc_ENGINEERING = 2, Tc_ALIEN = 5)
build_type = IMPRINTER
materials = list(MAT_GLASS = 2000, SACID = 20)
category = "Mecha Boards"
build_path = /obj/item/weapon/circuitboard/mecha/roswell/main

/datum/design/roswell_peri
name = "Circuit Design (\"Roswell\" Peripherals Control module)"
desc = "Allows for the construction of a \"Roswell\" Peripheral Control module."
id = "roswell_peri"
req_tech = list(Tc_PROGRAMMING = 3, Tc_ENGINEERING = 2, Tc_ALIEN = 5)
build_type = IMPRINTER
materials = list(MAT_GLASS = 2000, SACID = 20)
category = "Mecha Boards"
build_path = /obj/item/weapon/circuitboard/mecha/roswell/peripherals

0 comments on commit 4ba7bf5

Please sign in to comment.