mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
141 lines
5.2 KiB
Plaintext
141 lines
5.2 KiB
Plaintext
/datum/design/item/autolathe/engineering //Datum for object designs, used in construction //IDs of that techs the object originated from and the minimum level requirements.
|
|
category = "Engineering" //category item goes to
|
|
|
|
/datum/design/item/autolathe/engineering/airlockmodule
|
|
name = "airlock electronics"
|
|
id = "airlock_electronics"
|
|
build_path = /obj/item/weapon/airlock_electronics
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/airalarm
|
|
name = "air alarm electronics"
|
|
id = "airalarm_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/airalarm
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/firealarm
|
|
name = "fire alarm electronics"
|
|
id = "firealarm_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/firealarm
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/statusdisplay
|
|
name = "ai status display electronics"
|
|
id = "statusdisplay_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/ai_status_display
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/newscaster
|
|
name = "newscaster electronics"
|
|
id = "newscaster_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/newscaster
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/atm
|
|
name = "atm electronics"
|
|
id = "atm_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/atm
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/intercom
|
|
name = "intercom electronics"
|
|
id = "intercom_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/intercom
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/holopad
|
|
name = "holopad electronics"
|
|
id = "holopad_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/holopad
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/guestpass
|
|
name = "guestpass console electronics"
|
|
id = "guestpass_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/guestpass
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/entertainment
|
|
name = "entertainment camera electronics"
|
|
id = "entertainmentcamera_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/security/telescreen/entertainment
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/keycard_auth
|
|
name = "keycard authenticator electronics"
|
|
id = "keycardauth_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/keycard_auth
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/photocopier
|
|
name = "photocopíer electronics"
|
|
id = "photocopier_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/photocopier
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/fax
|
|
name = "fax machine electronics"
|
|
id = "fax_machine_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/fax
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/papershredder
|
|
name = "paper shredder electronics"
|
|
id = "papershredder_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/papershredder
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/microwave
|
|
name = "microwave electronics"
|
|
id = "microwave_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/microwave
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/washing
|
|
name = "washing machine electronics"
|
|
id = "washingmachine_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/washing
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/request
|
|
name = "request console electronics"
|
|
id = "requestconsole_electronics"
|
|
build_path = /obj/item/weapon/circuitboard/request
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62, "glass" = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/motor
|
|
name = "motor"
|
|
id = "motor"
|
|
build_path = /obj/item/weapon/stock_parts/motor
|
|
materials = list(DEFAULT_WALL_MATERIAL = 75, "glass" = 12)
|
|
|
|
/datum/design/item/autolathe/engineering/gear
|
|
name = "gear"
|
|
id = "gear"
|
|
build_path = /obj/item/weapon/stock_parts/gear
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62)
|
|
|
|
/datum/design/item/autolathe/engineering/spring
|
|
name = "spring"
|
|
id = "spring"
|
|
build_path = /obj/item/weapon/stock_parts/spring
|
|
materials = list(DEFAULT_WALL_MATERIAL = 50)
|
|
|
|
/datum/design/item/autolathe/engineering/rcd_ammo
|
|
name = "matter cartridge"
|
|
id = "rcd_ammo"
|
|
build_path = /obj/item/weapon/rcd_ammo
|
|
materials = list(DEFAULT_WALL_MATERIAL = 30000, "glass" = 15000)
|
|
|
|
/datum/design/item/autolathe/engineering/rcd
|
|
name = "rapid construction device"
|
|
id = "rcd"
|
|
build_path = /obj/item/weapon/rcd
|
|
materials = list(DEFAULT_WALL_MATERIAL = 62500)
|
|
|
|
/datum/design/item/autolathe/engineering/camera_assembly
|
|
name = "camera assembly"
|
|
id = "camera_assembly"
|
|
build_path = /obj/item/weapon/camera_assembly
|
|
materials = list(DEFAULT_WALL_MATERIAL = 875, "glass" = 375)
|