From cc1cd39305c1e9db9bdaaaf5698a3844fdbfbfa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B8=D1=80=D0=BE=D1=82=D0=BA=D0=B0?= <114731039+ErdGinalD@users.noreply.github.com> Date: Thu, 6 Jun 2024 23:36:47 +0300 Subject: [PATCH] Change "Construct Ripley" task description for robo + cargo fix (#25674) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Make "Construct Firefighter" task for robo + cargo fix * fix * Update code/game/jobs/job_objectives/science.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> * Update code/modules/supply/supply_packs/pack_science.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> * Update code/game/objects/items/stacks/sheets/sheet_types.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> * Update code/game/jobs/job_objectives/science.dm Signed-off-by: Luc <89928798+lewcc@users.noreply.github.com> --------- Signed-off-by: Сиротка <114731039+ErdGinalD@users.noreply.github.com> Signed-off-by: Luc <89928798+lewcc@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --- code/game/jobs/job_objectives/science.dm | 4 ++-- code/game/objects/items/stacks/sheets/sheet_types.dm | 6 ++++++ code/modules/supply/supply_packs/pack_science.dm | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/code/game/jobs/job_objectives/science.dm b/code/game/jobs/job_objectives/science.dm index fb3a777dfa0..277907106e9 100644 --- a/code/game/jobs/job_objectives/science.dm +++ b/code/game/jobs/job_objectives/science.dm @@ -34,8 +34,8 @@ //RIPLEY's /datum/job_objective/make_ripley - objective_name = "Construct a Ripley Mech" - description = "Construct a Ripley Mech for station usage" + objective_name = "Construct a Working Class Mech" + description = "Construct a Ripley or Firefighter Mech for station usage. Don't forget about modules!" gives_payout = TRUE completion_payment = 200 diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index c79ceef488d..315515a4f48 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -195,6 +195,12 @@ GLOBAL_LIST_INIT(plasteel_recipes, list( point_value = 23 table_type = /obj/structure/table/reinforced +/obj/item/stack/sheet/plasteel/five + amount = 5 + +/obj/item/stack/sheet/plasteel/fifteen + amount = 15 + /obj/item/stack/sheet/plasteel/fifty amount = 50 diff --git a/code/modules/supply/supply_packs/pack_science.dm b/code/modules/supply/supply_packs/pack_science.dm index 97be6d8a40d..4cbfdc9a966 100644 --- a/code/modules/supply/supply_packs/pack_science.dm +++ b/code/modules/supply/supply_packs/pack_science.dm @@ -46,7 +46,7 @@ /obj/item/circuitboard/mecha/ripley/main, /obj/item/circuitboard/mecha/ripley/peripherals, /obj/item/clothing/suit/fire/firefighter, - /obj/item/stack/sheet/plasteel = 15) + /obj/item/stack/sheet/plasteel/fifteen) cost = 350 containertype = /obj/structure/closet/crate/sci/robo containername = "\improper APLU \"Ripley\" construction crate" @@ -58,7 +58,7 @@ contains = list(/obj/item/circuitboard/mecha/odysseus/peripherals, /obj/item/circuitboard/mecha/odysseus/main, /obj/item/mecha_parts/mecha_equipment/medical/sleeper, - /obj/item/stack/sheet/plasteel = 5) + /obj/item/stack/sheet/plasteel/five) cost = 350 containertype = /obj/structure/closet/crate/sci/robo containername = "\improper \"Odysseus\" construction crate"