diff --git a/code/modules/uplink/uplink_items/nukeops.dm b/code/modules/uplink/uplink_items/nukeops.dm index 289cec43f1e..2e4b1771780 100644 --- a/code/modules/uplink/uplink_items/nukeops.dm +++ b/code/modules/uplink/uplink_items/nukeops.dm @@ -498,18 +498,7 @@ item = /obj/item/storage/backpack/duffelbag/syndie/x4 cost = 10 // 50% discount! -/datum/uplink_item/explosives/military_grade/emp - name = "Syndicate EMP Bomb" - desc = "A variation of the syndicate bomb designed to produce a large EMP effect." - item = /obj/item/sbeacondrop/emp - cost = 6 - -/datum/uplink_item/explosives/syndicate_bomb/emp/New() - ..() - if(HAS_TRAIT(SSstation, STATION_TRAIT_CYBERNETIC_REVOLUTION)) - cost *= 2 - -/datum/uplink_item/explosives/syndicate_bomb +/datum/uplink_item/explosives/military_grade/syndicate_bomb name = "Syndicate Bomb" desc = "The Syndicate bomb is a fearsome device capable of massive destruction. It has an adjustable timer, \ with a minimum of %MIN_BOMB_TIMER seconds, and can be bolted to the floor with a wrench to prevent \ @@ -520,10 +509,21 @@ item = /obj/item/sbeacondrop/bomb cost = 8 -/datum/uplink_item/explosives/syndicate_bomb/New() +/datum/uplink_item/explosives/military_grade/syndicate_bomb/New() . = ..() desc = replacetext(desc, "%MIN_BOMB_TIMER", SYNDIEBOMB_MIN_TIMER_SECONDS) +/datum/uplink_item/explosives/military_grade/syndicate_bomb/emp + name = "Syndicate EMP Bomb" + desc = "A variation of the syndicate bomb designed to produce a large EMP effect." + item = /obj/item/sbeacondrop/emp + cost = 6 + +/datum/uplink_item/explosives/military_grade/syndicate_bomb/emp/New() + . = ..() + if(HAS_TRAIT(SSstation, STATION_TRAIT_CYBERNETIC_REVOLUTION)) + cost *= 2 + // Support (Borgs and Reinforcements) /datum/uplink_category/reinforcements