diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index b005c7cfc0d..b6d110982cf 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -586,6 +586,13 @@ var/list/uplink_items = list() excludefrom = list(/datum/game_mode/nuclear) surplus = 40 +/datum/uplink_item/badass/syndiecash + name = "Syndicate Briefcase Full of Cash" + desc = "A secure briefcase containing 5000 space credits. Useful for bribing personnel, or purchasing goods and services at lucrative prices. \ + The briefcase also feels a little heavier to hold; it has been manufactured to pack a little bit more of a punch if your client needs some convincing." + item = /obj/item/weapon/storage/secure/briefcase/syndie + cost = 1 + /datum/uplink_item/badass/balloon name = "For showing that you are The Boss" desc = "A useless red balloon with the syndicate logo on it, which can blow the deepest of covers." diff --git a/code/game/objects/items/weapons/storage/secure.dm b/code/game/objects/items/weapons/storage/secure.dm index 3c5f5bfd146..b41d9ad3562 100644 --- a/code/game/objects/items/weapons/storage/secure.dm +++ b/code/game/objects/items/weapons/storage/secure.dm @@ -189,6 +189,15 @@ src.add_fingerprint(user) return +//Syndie variant of Secure Briefcase. Contains space cash, slightly more robust. +/obj/item/weapon/storage/secure/briefcase/syndie + force = 15.0 + +/obj/item/weapon/storage/secure/briefcase/syndie/New() + ..() + for(var/i = 0, i < 5, i++) + new /obj/item/weapon/spacecash/c1000(src) + // ----------------------------- // Secure Safe // ----------------------------- diff --git a/html/changelogs/fleure-PR-6871.yml b/html/changelogs/fleure-PR-6871.yml new file mode 100644 index 00000000000..a2f27f334a8 --- /dev/null +++ b/html/changelogs/fleure-PR-6871.yml @@ -0,0 +1,11 @@ +# Your name. +author: fleure +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in single (') or double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: +- rscadd: "Added briefcase filled with cash to uplink." \ No newline at end of file