From 14f74a2761d7320a50b1ace9997c008a594aa29c Mon Sep 17 00:00:00 2001 From: RatFromTheJungle <62520989+RatFromTheJungle@users.noreply.github.com> Date: Wed, 19 Feb 2025 18:45:22 -0500 Subject: [PATCH 1/2] adds mini-egun, sindano, and guepe to the uplink (priced accordingly) (#4910) Update dangerous.dm --- .../code/categories/dangerous.dm | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/modular_nova/modules/traitor-uplinks/code/categories/dangerous.dm b/modular_nova/modules/traitor-uplinks/code/categories/dangerous.dm index 9d02d53e291..2d7ce797c7b 100644 --- a/modular_nova/modules/traitor-uplinks/code/categories/dangerous.dm +++ b/modular_nova/modules/traitor-uplinks/code/categories/dangerous.dm @@ -4,3 +4,24 @@ item = /obj/item/gun/ballistic/automatic/c20r/toy/unrestricted/riot cost = 4 purchasable_from = ~(UPLINK_NUKE_OPS | UPLINK_CLOWN_OPS) + +/datum/uplink_item/dangerous/sindano + name = "Sindano Submachine Gun Kit" + desc = "A Sindano SMG, with spare lethal-and-non-lethal ammo, and three various magazines. (stendos not guaranteed) " + item = /obj/item/storage/toolbox/guncase/nova/carwo_large_case/sindano/evil + cost = 9 + purchasable_from = ~(UPLINK_NUKE_OPS | UPLINK_CLOWN_OPS) + +/datum/uplink_item/dangerous/wespe + name = "Guepe Pistol Kit" + desc = "A Guepe personal defense pistol, with two lethal magazines, full-auto and dubiously legal." + item = /obj/item/storage/toolbox/guncase/nova/pistol/opfor/wespe + cost = 7 + purchasable_from = ~(UPLINK_NUKE_OPS | UPLINK_CLOWN_OPS) + +/datum/uplink_item/dangerous/miniegunkit + name = "Mini-egun Kit" + desc = "A mini-egun and included recharger kit, it's better then nothing!" + item = /obj/item/storage/toolbox/guncase/nova/pistol/opfor/egun_mini + cost = 1 // 1 whole dolar + purchasable_from = ~(UPLINK_NUKE_OPS | UPLINK_CLOWN_OPS) From 0ba0c6a2cdf5aed87c9aa1803b4b806e4ada7cad Mon Sep 17 00:00:00 2001 From: StealsThePRs Date: Thu, 20 Feb 2025 02:45:44 +0300 Subject: [PATCH 2/2] [MIRROR] adds mini-egun, sindano, and guepe to the uplink (priced accordingly)