From 77afd3d86c3124be4375dda34caa007001c164f0 Mon Sep 17 00:00:00 2001 From: Fikou Date: Tue, 25 Feb 2020 16:31:30 +0100 Subject: [PATCH] atomization + buffs/nerfs --- code/game/mecha/working/clarke.dm | 8 ++++---- code/game/mecha/working/ripley.dm | 8 +++++--- code/modules/cargo/bounties/mech.dm | 6 +++--- code/modules/research/techweb/all_nodes.dm | 2 +- 4 files changed, 13 insertions(+), 11 deletions(-) diff --git a/code/game/mecha/working/clarke.dm b/code/game/mecha/working/clarke.dm index 81a47641d8a..085b16ae21e 100644 --- a/code/game/mecha/working/clarke.dm +++ b/code/game/mecha/working/clarke.dm @@ -3,17 +3,17 @@ name = "\improper Clarke" icon_state = "clarke" max_temperature = 65000 - max_integrity = 250 - step_in = 1.5 + max_integrity = 200 + step_in = 1.25 resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF lights_power = 7 deflect_chance = 10 step_energy_drain = 15 //slightly higher energy drain since you movin those wheels FAST - armor = list("melee" = 20, "bullet" = 10, "laser" = 30, "energy" = 30, "bomb" = 60, "bio" = 0, "rad" = 70, "fire" = 100, "acid" = 100) //low bullet/melee armor to compensate for fire protection and speed + armor = list("melee" = 20, "bullet" = 10, "laser" = 20, "energy" = 10, "bomb" = 60, "bio" = 0, "rad" = 70, "fire" = 100, "acid" = 100) //low armor to compensate for fire protection and speed max_equip = 6 wreckage = /obj/structure/mecha_wreckage/clarke enter_delay = 40 - cargo_capacity = 20 + cargo_capacity = 10 canstrafe = FALSE /obj/mecha/working/clarke/moved_inside(mob/living/carbon/human/H) diff --git a/code/game/mecha/working/ripley.dm b/code/game/mecha/working/ripley.dm index 5b6b44b2fa1..7047b327a33 100644 --- a/code/game/mecha/working/ripley.dm +++ b/code/game/mecha/working/ripley.dm @@ -5,7 +5,7 @@ silicon_icon_state = "ripley-empty" step_in = 1.5 //Move speed, lower is faster. var/fast_pressure_step_in = 1.5 //step_in while in low pressure conditions - var/slow_pressure_step_in = 2.0 //step_in while in normal pressure conditions + var/slow_pressure_step_in = 2 //step_in while in normal pressure conditions max_temperature = 20000 max_integrity = 200 lights_power = 7 @@ -44,13 +44,15 @@ /obj/mecha/working/ripley/mkii - desc = "Autonomous Power Loader Unit MK-II. This prototype Ripley is refitted with a pressurized cabin, trading its prior speed for atmospheric protection" + desc = "Autonomous Power Loader Unit MK-II. This prototype Ripley is refitted with a pressurized cabin, trading its prior speed for atmospheric protection and armor." name = "\improper APLU MK-II \"Ripley\"" icon_state = "ripleymkii" fast_pressure_step_in = 2 //step_in while in low pressure conditions slow_pressure_step_in = 4 //step_in while in normal pressure conditions step_in = 4 - armor = list("melee" = 40, "bullet" = 20, "laser" = 10, "energy" = 20, "bomb" = 40, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) + max_temperature = 30000 + max_integrity = 250 + armor = list("melee" = 40, "bullet" = 30, "laser" = 30, "energy" = 30, "bomb" = 60, "bio" = 0, "rad" = 70, "fire" = 100, "acid" = 100) wreckage = /obj/structure/mecha_wreckage/ripley/mkii enclosed = TRUE enter_delay = 40 diff --git a/code/modules/cargo/bounties/mech.dm b/code/modules/cargo/bounties/mech.dm index f62364060fa..4cbab32d349 100644 --- a/code/modules/cargo/bounties/mech.dm +++ b/code/modules/cargo/bounties/mech.dm @@ -20,12 +20,12 @@ /datum/bounty/item/mech/clarke name = "Clarke" - reward = 20000 + reward = 16000 wanted_types = list(/obj/mecha/working/clarke) /datum/bounty/item/mech/odysseus name = "Odysseus" - reward = 13000 + reward = 11000 wanted_types = list(/obj/mecha/medical/odysseus) /datum/bounty/item/mech/gygax @@ -35,7 +35,7 @@ /datum/bounty/item/mech/durand name = "Durand" - reward = 25000 + reward = 20000 wanted_types = list(/obj/mecha/combat/durand) /datum/bounty/item/mech/phazon diff --git a/code/modules/research/techweb/all_nodes.dm b/code/modules/research/techweb/all_nodes.dm index b4f8fd06057..e7fb7fb378e 100644 --- a/code/modules/research/techweb/all_nodes.dm +++ b/code/modules/research/techweb/all_nodes.dm @@ -727,7 +727,7 @@ id = "mecha_odysseus" display_name = "EXOSUIT: Odysseus" description = "Odysseus exosuit designs" - prereq_ids = list("biotech") + prereq_ids = list("base") design_ids = list("odysseus_chassis", "odysseus_torso", "odysseus_head", "odysseus_left_arm", "odysseus_right_arm" ,"odysseus_left_leg", "odysseus_right_leg", "odysseus_main", "odysseus_peri") research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)