From 5758c6652073388b30a2df662f139781a62fcc61 Mon Sep 17 00:00:00 2001 From: Chemlight Date: Tue, 16 Nov 2021 19:55:25 -0800 Subject: [PATCH] Carpentry VS paperwork --- code/modules/cargo/exports/manifest.dm | 2 +- code/modules/cargo/packs/misc.dm | 2 +- hyperstation/code/modules/cargo/exports/sweatshop.dm | 12 +++++++----- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/code/modules/cargo/exports/manifest.dm b/code/modules/cargo/exports/manifest.dm index 60515781f..963975ab8 100644 --- a/code/modules/cargo/exports/manifest.dm +++ b/code/modules/cargo/exports/manifest.dm @@ -80,7 +80,7 @@ // Paper work done correctly /datum/export/paperwork_correct - cost = 120 // finicky number 20 x 120 = 2400 per crate + cost = 50 // finicky number 20 x 50 = 1000 per crate, nerfed from 120 to 50 gaining 2400 versus 1000 (CC is running out of space to put all this paper somewhere) k_elasticity = 0 unit_name = "correct paperwork" export_types = list(/obj/item/folder/paperwork_correct) diff --git a/code/modules/cargo/packs/misc.dm b/code/modules/cargo/packs/misc.dm index bb50395e8..1b290ba18 100644 --- a/code/modules/cargo/packs/misc.dm +++ b/code/modules/cargo/packs/misc.dm @@ -223,7 +223,7 @@ /datum/supply_pack/misc/paper_work name = "Freelance Paper work" desc = "The Kinaris Primary Bureaucratic Database Intelligence (PDBI) reports that the station has not completed its funding and grant paperwork this solar cycle. In order to gain further funding, your station is required to fill out (20) ten of these forms or no additional capital will be disbursed. We have sent you ten copies of the following form and we expect every one to be up to Kinaris Standards." // Disbursement. It's not a typo, look it up. - cost = 700 // Net of 0 credits but makes (120 x 20 = 2400) + cost = 700 // Net of 0 credits but makes (50 x 20 = 1000, used to be (120 x 20 = 2400)) contains = list(/obj/item/folder/paperwork, /obj/item/folder/paperwork, /obj/item/folder/paperwork, diff --git a/hyperstation/code/modules/cargo/exports/sweatshop.dm b/hyperstation/code/modules/cargo/exports/sweatshop.dm index 623ee585a..34e527e22 100644 --- a/hyperstation/code/modules/cargo/exports/sweatshop.dm +++ b/hyperstation/code/modules/cargo/exports/sweatshop.dm @@ -1,24 +1,26 @@ /datum/export/sweatshop/stool - cost = 850 + cost = 2550 //buffed temporarily due to paper being pricier than actual wood, was 850 unit_name = "custom stool" export_types = list(/obj/item/processed/wood/stool) /datum/export/sweatshop/cushion - cost = 300 + cost = 450 //buffed temporarily due to paper being pricier than actual cotton, was 300 unit_name = "cloth cushion" export_types = list(/obj/item/cushion) /datum/export/sweatshop/cushionsilk - cost = 500 + cost = 750 //buffed temporarily due to paper being pricier than actual silk, was 500 unit_name = "silk cushion" export_types = list(/obj/item/cushion) /datum/export/sweatshop/stool/cushioncloth - cost = 1800 + cost = 5400 //buffed temporarily due to paper being pricier than actual wood, was 1800 unit_name = "cushioned stool (cloth)" export_types = list(/obj/item/processed/wood/stoolcloth) /datum/export/sweatshop/stool/cushionsilk - cost = 2400 + cost = 7200 //buffed temporarily due to paper being pricier than actual wood, was 2400 unit_name = "cushioned stool (cloth)" export_types = list(/obj/item/processed/wood/stoolsilk) + +// Prices above are temporary buffs until more carpentry is added \ No newline at end of file