mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 12:29:23 +01:00
1c8c0c2221
Fixes several runtimes from the past few weeks, some additional material repath regressions, and the fact that if I shoot you with a stream of ionized deuterium particles, it doesn't riddle you with cancer. changes: - bugfix: "Fixes emergency shields runtiming when hit by thrown objects." - bugfix: "Fixes several stale global list runtimes." - bugfix: "Fixes several health percentage checks that could use unset initial health values." - bugfix: "Fixes additional materials regressions in INDRA code." - bugfix: "Fixes invalid fuel injector depletion math." - bugfix: "Makes accelerated particles apply radiation damage to living mobs they pass through."
21 lines
646 B
Plaintext
21 lines
646 B
Plaintext
/datum/design/item/disk
|
|
p_category = "Data Disk Designs"
|
|
|
|
/datum/design/item/disk/design_disk
|
|
name = "Design Storage"
|
|
req_tech = list(TECH_DATA = 1)
|
|
materials = list(MATERIAL_STEEL = 30, MATERIAL_GLASS = 10)
|
|
build_path = /obj/item/disk/design_disk
|
|
|
|
/datum/design/item/disk/tech_disk
|
|
name = "Technology Data Storage"
|
|
req_tech = list(TECH_DATA = 1)
|
|
materials = list(MATERIAL_STEEL = 30, MATERIAL_GLASS = 10)
|
|
build_path = /obj/item/disk/tech_disk
|
|
|
|
/datum/design/item/disk/flora_disk
|
|
name = "Flora Data Storage"
|
|
req_tech = list(TECH_DATA = 1)
|
|
materials = list(MATERIAL_STEEL = 30, MATERIAL_GLASS = 10)
|
|
build_path = /obj/item/disk/botany
|