diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 3a59c0b47be..26f47771a4d 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -1733,6 +1733,13 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) cost = 20 cant_discount = TRUE +/datum/uplink_item/badass/bomber + name = "Syndicate Bomber Jacket" + desc = "An awesome jacket to help you style on Nanotrasen with. The lining is made of a thin polymer to provide a small amount of armor. Does not provide any extra storage space." + reference = "JCKT" + item = /obj/item/clothing/suit/jacket/syndicatebomber + cost = 1 + /datum/uplink_item/implants/macrobomb name = "Macrobomb Bio-chip" desc = "A bio-chip injected into the body, and later activated either manually or automatically upon death. Upon death, releases a massive explosion that will wipe out everything nearby." diff --git a/code/game/objects/effects/spawners/lootdrop.dm b/code/game/objects/effects/spawners/lootdrop.dm index fd7e379d096..dd01023256e 100644 --- a/code/game/objects/effects/spawners/lootdrop.dm +++ b/code/game/objects/effects/spawners/lootdrop.dm @@ -157,6 +157,7 @@ /obj/item/storage/secure/briefcase/syndie = 2, /obj/item/storage/fancy/cigarettes/cigpack_syndicate = 2, /obj/item/storage/pill_bottle/fakedeath = 2, + /obj/item/clothing/suit/jacket/syndicatebomber = 5, "" = 60 // This should be a decently high number for chances where no loot will spawn ) diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 191a8d7a2cb..02a9e1df01f 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -794,6 +794,20 @@ "Vox" = 'icons/mob/clothing/species/vox/suit.dmi' ) +/obj/item/clothing/suit/jacket/syndicatebomber + name = "suspicious bomber jacket" + desc = "A suspicious but extremely stylish jacket." + icon_state = "bombersyndie" + item_state = "bombersyndie" + ignore_suitadjust = FALSE + allowed = list(/obj/item/flashlight, /obj/item/tank/internals/emergency_oxygen, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter) + body_parts_covered = UPPER_TORSO | LOWER_TORSO | ARMS + cold_protection = UPPER_TORSO | LOWER_TORSO | ARMS + min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT + actions_types = list(/datum/action/item_action/zipper) + adjust_flavour = "unzip" + armor = list(MELEE = 5, BULLET = 5, LASER = 5, ENERGY = 0, BOMB = 0, BIO = 0, RAD = 0, FIRE = 30, ACID = 30) + /obj/item/clothing/suit/jacket/secbomber name = "security bomber jacket" desc = "A stylish and worn-in armoured black bomber jacket emblazoned with the NT Security crest on the left breast. Looks rugged." diff --git a/icons/mob/clothing/species/vox/suit.dmi b/icons/mob/clothing/species/vox/suit.dmi index 4b80dffe009..d71b748bbe0 100644 Binary files a/icons/mob/clothing/species/vox/suit.dmi and b/icons/mob/clothing/species/vox/suit.dmi differ diff --git a/icons/mob/clothing/suit.dmi b/icons/mob/clothing/suit.dmi index 345b1291f63..910034d19bb 100644 Binary files a/icons/mob/clothing/suit.dmi and b/icons/mob/clothing/suit.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index f2efade4805..50aa79c398d 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ