From 35ac6c40e0a42653db893bb9be807215db5979a0 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 20 Jun 2017 09:59:04 -0500 Subject: [PATCH] Remember to test your PRs, kids! - Rebalances matter cartridge cost redux (#1652) --- code/modules/cargo/exports/tools.dm | 4 ++-- code/modules/research/designs/autolathe_designs.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/cargo/exports/tools.dm b/code/modules/cargo/exports/tools.dm index 683f2c08cc..8dcf68a9f0 100644 --- a/code/modules/cargo/exports/tools.dm +++ b/code/modules/cargo/exports/tools.dm @@ -108,9 +108,9 @@ export_types = list(/obj/item/weapon/construction/rcd) /datum/export/rcd_ammo - cost = 15 // 1.5 metal, 1 glass -> 12.5 credits, +2.5 credits + cost = 60 // 6 metal, 4 glass -> 50 credits, +10 credits unit_name = "compressed matter cardridge" - export_types = list(/datum/design/rcd_ammo) + export_types = list(/obj/item/weapon/rcd_ammo) /datum/export/rpd cost = 350 // 37.5 metal, 18.75 glass -> 281.25 credits, + some diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 7fbc8309a8..7caae4a024 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -235,7 +235,7 @@ name = "Compressed Matter Cartridge" id = "rcd_ammo" build_type = AUTOLATHE - materials = list(MAT_METAL = 3000, MAT_GLASS=2000) + materials = list(MAT_METAL = 12000, MAT_GLASS=8000) build_path = /obj/item/weapon/rcd_ammo category = list("initial","Construction")