mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 04:27:35 +01:00
Fix technology levels of some items (#29596)
* Synchronize TECH defines with /datum/tech IDs * Fix origin_tech values --------- Co-authored-by: Arthri <41360489+a@users.noreply.github.com>
This commit is contained in:
@@ -126,7 +126,7 @@
|
||||
build_path = /obj/machinery/cooking/deepfryer
|
||||
icon_state = "service"
|
||||
board_type = "machine"
|
||||
origin_tech = list(TECH_BIO = 1)
|
||||
origin_tech = "biotech=1"
|
||||
req_components = list(
|
||||
/obj/item/stack/cable_coil = 5,
|
||||
/obj/item/stock_parts/micro_laser = 2,
|
||||
|
||||
@@ -197,7 +197,7 @@
|
||||
build_path = /obj/machinery/cooking/grill
|
||||
board_type = "machine"
|
||||
icon_state = "service"
|
||||
origin_tech = list(TECH_BIO = 1)
|
||||
origin_tech = "biotech=1"
|
||||
req_components = list(
|
||||
/obj/item/stock_parts/micro_laser = 2,
|
||||
/obj/item/stock_parts/matter_bin = 2,
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
build_path = /obj/machinery/cooking/ice_cream_mixer
|
||||
board_type = "machine"
|
||||
icon_state = "service"
|
||||
origin_tech = list(TECH_BIO = 1)
|
||||
origin_tech = "biotech=1"
|
||||
req_components = list(
|
||||
/obj/item/stock_parts/micro_laser = 2,
|
||||
/obj/item/stock_parts/capacitor = 1,
|
||||
|
||||
@@ -158,7 +158,7 @@
|
||||
build_path = /obj/machinery/cooking/oven
|
||||
board_type = "machine"
|
||||
icon_state = "service"
|
||||
origin_tech = list(TECH_BIO = 1)
|
||||
origin_tech = "biotech=1"
|
||||
req_components = list(
|
||||
/obj/item/stack/cable_coil = 5,
|
||||
/obj/item/stack/sheet/glass = 1,
|
||||
|
||||
@@ -127,7 +127,7 @@
|
||||
build_path = /obj/machinery/cooking/stovetop
|
||||
board_type = "machine"
|
||||
icon_state = "service"
|
||||
origin_tech = list(TECH_BIO = 1)
|
||||
origin_tech = "biotech=1"
|
||||
req_components = list(
|
||||
/obj/item/stock_parts/micro_laser = 2,
|
||||
/obj/item/stock_parts/capacitor = 1,
|
||||
|
||||
@@ -278,21 +278,21 @@ research holder datum.
|
||||
/datum/tech/materials
|
||||
name = "Materials Research"
|
||||
desc = "Development of new and improved materials."
|
||||
id = "materials"
|
||||
id = TECH_MATERIAL
|
||||
max_level = 7
|
||||
ui_icon = "layer-group"
|
||||
|
||||
/datum/tech/engineering
|
||||
name = "Engineering Research"
|
||||
desc = "Development of new and improved engineering parts and methods."
|
||||
id = "engineering"
|
||||
id = TECH_ENGINEERING
|
||||
max_level = 7
|
||||
ui_icon = "tools"
|
||||
|
||||
/datum/tech/plasmatech
|
||||
name = "Plasma Research"
|
||||
desc = "Research into the mysterious substance colloqually known as 'plasma'."
|
||||
id = "plasmatech"
|
||||
id = TECH_PLASMA
|
||||
max_level = 7
|
||||
rare = 3
|
||||
ui_icon = "fire"
|
||||
@@ -300,14 +300,14 @@ research holder datum.
|
||||
/datum/tech/powerstorage
|
||||
name = "Power Manipulation Technology"
|
||||
desc = "The various technologies behind the storage and generation of electicity."
|
||||
id = "powerstorage"
|
||||
id = TECH_POWER
|
||||
max_level = 7
|
||||
ui_icon = "bolt"
|
||||
|
||||
/datum/tech/bluespace
|
||||
name = "'Bluespace' Research"
|
||||
desc = "Research into the sub-reality known as 'bluespace'."
|
||||
id = "bluespace"
|
||||
id = TECH_BLUESPACE
|
||||
max_level = 7
|
||||
rare = 2
|
||||
ui_icon = "gem"
|
||||
@@ -315,28 +315,28 @@ research holder datum.
|
||||
/datum/tech/biotech
|
||||
name = "Biological Technology"
|
||||
desc = "Research into the deeper mysteries of life and organic substances."
|
||||
id = "biotech"
|
||||
id = TECH_BIO
|
||||
max_level = 7
|
||||
ui_icon = "seedling"
|
||||
|
||||
/datum/tech/combat
|
||||
name = "Combat Systems Research"
|
||||
desc = "The development of offensive and defensive systems."
|
||||
id = "combat"
|
||||
id = TECH_COMBAT
|
||||
max_level = 7
|
||||
ui_icon = "shield-alt"
|
||||
|
||||
/datum/tech/magnets
|
||||
name = "Electromagnetic Spectrum Research"
|
||||
desc = "Research into the electromagnetic spectrum. No clue how they actually work, though."
|
||||
id = "magnets"
|
||||
id = TECH_MAGNETS
|
||||
max_level = 7
|
||||
ui_icon = "magnet"
|
||||
|
||||
/datum/tech/programming
|
||||
name = "Data Theory Research"
|
||||
desc = "The development of new computer and artificial intelligence and data storage systems."
|
||||
id = "programming"
|
||||
id = TECH_PROGRAM
|
||||
max_level = 7
|
||||
ui_icon = "server"
|
||||
|
||||
@@ -344,7 +344,7 @@ research holder datum.
|
||||
/datum/tech/toxins
|
||||
name = "Toxins Research"
|
||||
desc = "Research into plasma based explosive devices. Upgrade through testing explosives in the toxins lab."
|
||||
id = "toxins"
|
||||
id = TECH_TOXINS
|
||||
max_level = 7
|
||||
rare = 2
|
||||
ui_icon = "explosion"
|
||||
@@ -352,7 +352,7 @@ research holder datum.
|
||||
/datum/tech/syndicate
|
||||
name = "Illegal Technologies Research"
|
||||
desc = "The study of technologies that violate standard Nanotrasen regulations."
|
||||
id = "syndicate"
|
||||
id = TECH_SYNDICATE
|
||||
max_level = 0 // Don't count towards maxed research, since it's illegal.
|
||||
rare = 4
|
||||
ui_icon = "user-astronaut"
|
||||
@@ -360,7 +360,7 @@ research holder datum.
|
||||
/datum/tech/abductor
|
||||
name = "Alien Technologies Research"
|
||||
desc = "The study of technologies used by the advanced alien race known as Abductors."
|
||||
id = "abductor"
|
||||
id = TECH_ABDUCTOR
|
||||
rare = 5
|
||||
level = 0
|
||||
ui_icon = "satellite"
|
||||
|
||||
@@ -173,7 +173,7 @@
|
||||
/// Advanced abductor version. Is a lot faster with implanting into others
|
||||
/obj/item/organ_extractor/abductor
|
||||
name = "alien organ extractor"
|
||||
origin_tech = "biotech=6;materials=5;alien=4"
|
||||
origin_tech = "biotech=6;materials=5;abductor=4"
|
||||
icon_state = "abductor_extractor"
|
||||
insert_time = 3 SECONDS
|
||||
self_insert_time = 1 SECONDS
|
||||
|
||||
Reference in New Issue
Block a user