From fbbb1478726391139ef744e91cea5544277e4026 Mon Sep 17 00:00:00 2001 From: Henri215 <77684085+Henri215@users.noreply.github.com> Date: Fri, 11 Nov 2022 10:17:44 -0300 Subject: [PATCH] proto cost tweaks (#19596) --- code/game/objects/items/devices/scanners.dm | 2 +- .../research/designs/bluespace_designs.dm | 2 +- .../research/designs/equipment_designs.dm | 6 +-- .../research/designs/medical_designs.dm | 42 +++++++++---------- .../research/designs/weapon_designs.dm | 2 +- 5 files changed, 27 insertions(+), 27 deletions(-) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 0f2bd3d7b69..47371ee329e 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -463,7 +463,7 @@ REAGENT SCANNER throwforce = 5 throw_speed = 4 throw_range = 20 - materials = list(MAT_METAL=30, MAT_GLASS=20) + materials = list(MAT_METAL=300, MAT_GLASS=200) origin_tech = "magnets=2;biotech=1;plasmatech=2" var/details = FALSE var/datatoprint = "" diff --git a/code/modules/research/designs/bluespace_designs.dm b/code/modules/research/designs/bluespace_designs.dm index cdb6be6ebdd..dc213e0aae8 100644 --- a/code/modules/research/designs/bluespace_designs.dm +++ b/code/modules/research/designs/bluespace_designs.dm @@ -77,7 +77,7 @@ id = "beacon" req_tech = list("bluespace" = 1) build_type = PROTOLATHE - materials = list(MAT_METAL = 150, MAT_GLASS = 100) + materials = list(MAT_METAL = 300, MAT_GLASS = 200) build_path = /obj/item/radio/beacon category = list("Bluespace") diff --git a/code/modules/research/designs/equipment_designs.dm b/code/modules/research/designs/equipment_designs.dm index 494ad4438c6..078d34bd7f6 100644 --- a/code/modules/research/designs/equipment_designs.dm +++ b/code/modules/research/designs/equipment_designs.dm @@ -133,7 +133,7 @@ category = list("Equipment") /datum/design/breath_mask - name = "Breath mask" + name = "Breath Mask" desc = "A close-fitting mask that can be connected to an air supply." id = "breathmask" req_tech = list("toxins" = 3) @@ -208,7 +208,7 @@ id = "hydroponic_hud" req_tech = list("magnets" = 3, "biotech" = 3) build_type = PROTOLATHE - materials = list(MAT_METAL = 50, MAT_GLASS = 50) + materials = list(MAT_METAL = 500, MAT_GLASS = 500) build_path = /obj/item/clothing/glasses/hud/hydroponic category = list("Equipment") @@ -218,7 +218,7 @@ id = "hydroponic_hud_night" req_tech = list("biotech" = 4, "magnets" = 5, "plasmatech" = 4, "engineering" = 6) build_type = PROTOLATHE - materials = list(MAT_METAL = 200, MAT_GLASS = 200, MAT_URANIUM = 1000, MAT_PLASMA = 200) + materials = list(MAT_METAL = 600, MAT_GLASS = 600, MAT_URANIUM = 1000, MAT_PLASMA = 200) build_path = /obj/item/clothing/glasses/hud/hydroponic/night category = list("Equipment") diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm index fa8e74f70a7..9c0b82ae396 100644 --- a/code/modules/research/designs/medical_designs.dm +++ b/code/modules/research/designs/medical_designs.dm @@ -8,7 +8,7 @@ id = "adv_reagent_scanner" req_tech = list("biotech" = 3, "magnets" = 4, "plasmatech" = 3) build_type = PROTOLATHE - materials = list(MAT_METAL = 30, MAT_GLASS = 20) + materials = list(MAT_METAL = 300, MAT_GLASS = 200) build_path = /obj/item/reagent_scanner/adv category = list("Medical") @@ -38,7 +38,7 @@ id = "cyborg_analyzer" req_tech = list("programming" = 2, "biotech" = 2, "magnets" = 2) build_type = PROTOLATHE - materials = list(MAT_METAL = 30, MAT_GLASS = 20) + materials = list(MAT_METAL = 300, MAT_GLASS = 200) build_path = /obj/item/robotanalyzer category = list("Medical") @@ -48,7 +48,7 @@ id = "healthanalyzer_upgrade" req_tech = list("biotech" = 2, "magnets" = 3) build_type = PROTOLATHE - materials = list(MAT_METAL = 20, MAT_GLASS = 20) + materials = list(MAT_METAL = 200, MAT_GLASS = 200) build_path = /obj/item/healthupgrade category = list("Medical") @@ -58,7 +58,7 @@ id = "handheld_defib" req_tech = list("biotech" = 2, "magnets" = 3) build_type = PROTOLATHE - materials = list(MAT_METAL = 20, MAT_GLASS = 20) + materials = list(MAT_METAL = 200, MAT_GLASS = 200) build_path = /obj/item/handheld_defibrillator category = list("Medical") @@ -108,7 +108,7 @@ id = "sensor_device" req_tech = list("programming" = 3, "magnets" = 2, "biotech" = 2) build_type = PROTOLATHE - materials = list(MAT_METAL = 30, MAT_GLASS = 20) + materials = list(MAT_METAL = 300, MAT_GLASS = 200) build_path = /obj/item/sensor_device category = list("Medical") @@ -161,7 +161,7 @@ id = "reagent_scanner" req_tech = list("magnets" = 2, "plasmatech" = 2) build_type = PROTOLATHE - materials = list(MAT_METAL = 30, MAT_GLASS = 20) + materials = list(MAT_METAL = 300, MAT_GLASS = 200) build_path = /obj/item/reagent_scanner category = list("Medical") @@ -300,7 +300,7 @@ ///////////////////////////////////////// /datum/design/cyberimp_welding - name = "Welding Shield implant" + name = "Welding Shield Implant" desc = "These reactive micro-shields will protect you from welders and flashes without obscuring your vision." id = "ci-welding" req_tech = list("materials" = 4, "biotech" = 4, "engineering" = 5, "plasmatech" = 4) @@ -377,7 +377,7 @@ category = list("Medical") /datum/design/cyberimp_diagnostic_hud - name = "Diagnostic HUD implant" + name = "Diagnostic HUD Implant" desc = "These cybernetic eye implants will display a diagnostic HUD over everything you see. Wiggle eyes to control." id = "ci-diaghud" req_tech = list("materials" = 5, "engineering" = 4, "programming" = 4, "biotech" = 4) @@ -388,7 +388,7 @@ category = list("Medical") /datum/design/cyberimp_medical_hud - name = "Medical HUD implant" + name = "Medical HUD Implant" desc = "These cybernetic eyes will display a medical HUD over everything you see. Wiggle eyes to control." id = "ci-medhud" req_tech = list("materials" = 5, "programming" = 4, "biotech" = 4) @@ -399,7 +399,7 @@ category = list("Medical") /datum/design/cyberimp_security_hud - name = "Security HUD implant" + name = "Security HUD Implant" desc = "These cybernetic eyes will display a security HUD over everything you see. Wiggle eyes to control." id = "ci-sechud" req_tech = list("materials" = 5, "programming" = 4, "biotech" = 4, "combat" = 3) @@ -410,7 +410,7 @@ category = list("Medical") /datum/design/cyberimp_meson - name = "Meson scanner implant" + name = "Meson Scanner Implant" desc = "These cybernetic eyes will allow you to see the structural layout of the station, and, well, everything else." id = "ci-mesonhud" req_tech = list("materials" = 4, "biotech" = 4, "engineering" = 4) @@ -421,7 +421,7 @@ category = list("Medical") /datum/design/cyberimp_xray - name = "X-Ray implant" + name = "X-Ray Implant" desc = "These cybernetic eyes will give you X-ray vision. Blinking is futile." id = "ci-xray" req_tech = list("materials" = 7, "programming" = 5, "biotech" = 8, "magnets" = 5,"plasmatech" = 6) @@ -432,7 +432,7 @@ category = list("Medical") /datum/design/cyberimp_thermals - name = "Thermals implant" + name = "Thermals Implant" desc = "These cybernetic eyes will give you Thermal vision. Vertical slit pupil included." id = "ci-thermals" req_tech = list("materials" = 6, "programming" = 4, "biotech" = 7, "magnets" = 5,"plasmatech" = 4) @@ -443,7 +443,7 @@ category = list("Medical") /datum/design/cyberimp_antidrop - name = "Anti-Drop implant" + name = "Anti-Drop Implant" desc = "This cybernetic brain implant will allow you to force your hand muscles to contract, preventing item dropping. Twitch ear to toggle." id = "ci-antidrop" req_tech = list("materials" = 5, "programming" = 6, "biotech" = 5) @@ -454,7 +454,7 @@ category = list("Medical") /datum/design/cyberimp_antistun - name = "CNS Rebooter implant" + name = "CNS Rebooter Implant" desc = "This implant will automatically give you back control over your central nervous system, reducing downtime when fatigued. Incompatible with the Neural Jumpstarter." id = "ci-antistun" req_tech = list("materials" = 6, "programming" = 5, "biotech" = 6) @@ -465,7 +465,7 @@ category = list("Medical") /datum/design/cyberimp_antisleep - name = "Neural Jumperstarter implant" + name = "Neural Jumperstarter Implant" desc = "This implant will automatically attempt to jolt you awake when it detects you have fallen unconscious. Has a short cooldown, incompatible with the CNS Rebooter." id = "ci-antisleep" req_tech = list("materials" = 6, "programming" = 5, "biotech" = 6) @@ -476,7 +476,7 @@ category = list("Medical") /datum/design/cyberimp_clownvoice - name = "Comical implant" + name = "Comical Implant" desc = "Uh oh." id = "ci-clownvoice" req_tech = list("materials" = 2, "biotech" = 2) @@ -487,7 +487,7 @@ category = list("Medical") /datum/design/cyberimp_nutriment - name = "Nutriment pump implant" + name = "Nutriment Pump Implant" desc = "This implant with synthesize and pump into your bloodstream a small amount of nutriment when you are starving." id = "ci-nutriment" req_tech = list("materials" = 3, "powerstorage" = 4, "biotech" = 3) @@ -498,7 +498,7 @@ category = list("Medical") /datum/design/cyberimp_nutriment_plus - name = "Nutriment pump implant PLUS" + name = "Nutriment Pump Implant PLUS" desc = "This implant with synthesize and pump into your bloodstream a small amount of nutriment when you are hungry." id = "ci-nutrimentplus" req_tech = list("materials" = 5, "powerstorage" = 4, "biotech" = 4) @@ -509,7 +509,7 @@ category = list("Medical") /datum/design/cyberimp_reviver - name = "Reviver implant" + name = "Reviver Implant" desc = "This implant will attempt to revive you if you lose consciousness. For the faint of heart!" id = "ci-reviver" req_tech = list("materials" = 5, "programming" = 4, "biotech" = 5) @@ -524,7 +524,7 @@ ///////////////////////////////////////// /datum/design/implanter - name = "bio-chip implanter" + name = "Bio-chip Implanter" desc = "A sterile automatic bio-chip injector." id = "implanter" req_tech = list("materials" = 2, "biotech" = 3, "programming" = 2) diff --git a/code/modules/research/designs/weapon_designs.dm b/code/modules/research/designs/weapon_designs.dm index dbad421683a..259e1e0c047 100644 --- a/code/modules/research/designs/weapon_designs.dm +++ b/code/modules/research/designs/weapon_designs.dm @@ -262,7 +262,7 @@ category = list("Weapons") /datum/design/pyroclaw - name = "Fusion gauntlets" + name = "Fusion Gauntlets" desc = "A pair of gloves designed to make superheated claws capable of cutting through almost anything. Needs a pyro anomaly core" id = "pyro_gloves" req_tech = list("combat" = 7, "materials" = 7, "engineering" = 7, "plasmatech" = 7)