Skip to content

Commit

Permalink
[MIRROR] add smoke kit to uplink (#2592)
Browse files Browse the repository at this point in the history
* add smoke kit to uplink (#83330)

## About The Pull Request

Add smoke kit (5 grenades) by 2 TC

## Why It's Good For The Game

Smokes can be a good addition for stealth implant, vanishing and slicing
with a katana

## Proof of Testing

<details>
<summary>Screenshots/Videos OLD</summary>
  

![image](https://github.com/tgstation/tgstation/assets/60922927/89b56042-2b25-4f5e-bfd4-b5d088c56abd)

![image](https://github.com/tgstation/tgstation/assets/60922927/56d0c084-6c46-4e58-8931-c30d623858ee)

</details>

## Changelog


:cl:
add: Added smoke kit (5 grenades) with four grenades to uplink by 2 TC
/:cl:

---------

Co-authored-by: Helg2 <[email protected]>

* add smoke kit to uplink

---------

Co-authored-by: hack-wrench <[email protected]>
Co-authored-by: Helg2 <[email protected]>
Co-authored-by: NovaBot13 <[email protected]>
  • Loading branch information
4 people authored and StealsThePRs committed May 21, 2024
1 parent 87c2e72 commit dc2e4ac
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions code/game/objects/items/storage/uplink_kits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,13 @@
new /obj/item/grenade/empgrenade(src)
new /obj/item/implanter/emp(src)

/obj/item/storage/box/syndie_kit/smoke
name = "smoke kit"

/obj/item/storage/box/syndie_kit/smoke/PopulateContents()
for(var/i in 1 to 5)
new /obj/item/grenade/smokebomb(src)

/obj/item/storage/box/syndie_kit/mail_counterfeit
name = "mail counterfeit kit"
desc = "A box full of mail counterfeit devices. Nothing stops the mail."
Expand Down
6 changes: 6 additions & 0 deletions code/modules/uplink/uplink_items/explosive.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@
if(HAS_TRAIT(SSstation, STATION_TRAIT_CYBERNETIC_REVOLUTION))
cost *= 3

/datum/uplink_item/explosives/smoke
name = "Smoke Grenades"
desc = "A box that contains five smoke grenades. Useful for vanishing and ninja fans with katana."
item = /obj/item/storage/box/syndie_kit/smoke
cost = 2

/datum/uplink_item/explosives/pizza_bomb
name = "Pizza Bomb"
desc = "A pizza box with a bomb cunningly attached to the lid. The timer needs to be set by opening the box; afterwards, \
Expand Down

0 comments on commit dc2e4ac

Please sign in to comment.