mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-31 07:57:47 +01:00
2 new traitor items: sticky tar applicator and sticky tar grenade (#25529)
* Update MechaControlConsole.js * Changes breakout time to 30, refactors ds into s * Update bot_construction.dm * Revert "Update bot_construction.dm" This reverts commitddba7627dc. * Revert "Merge branch 'master' of https://github.com/Daylight2/Paradise" This reverts commit8f1bc8c6a3, reversing changes made toddba7627dc. * Code works! * Sprites, uplink, and more! * More cleanability, sprites, grenade * Formatting * New tar sprites! * forgot this * How did this even break * More price tweaks * Apply suggestions from code review * Part 2 * One last fix * Sirryans suggestion Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: Daylight <18598676+Daylight2@users.noreply.github.com> * Part 1 of code review part 2 * Part 2 of code review part 2 * This took many hours too long. @Daylight2 Part 3 of code review part 2 * Update code/datums/uplink_items/uplink_general.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Daylight <18598676+Daylight2@users.noreply.github.com> * Update code/modules/reagents/reagent_containers/spray.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Daylight <18598676+Daylight2@users.noreply.github.com> * Part 4 of code review part 2 * Forgot to take this out after testing * Load-bearing whitespace * Fixes runtime * Moved, clusterbuster, bugfix * Apply suggestion from code review Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: Daylight <18598676+Daylight2@users.noreply.github.com> * Sirryan's Review * Apply suggestions from code review Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Daylight <18598676+Daylight2@users.noreply.github.com> * final final commit for real this time v3 --------- Signed-off-by: Daylight <18598676+Daylight2@users.noreply.github.com> Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
This commit is contained in:
@@ -592,6 +592,24 @@
|
||||
beakers += B2
|
||||
update_icon(UPDATE_ICON_STATE)
|
||||
|
||||
/obj/item/grenade/chem_grenade/tar
|
||||
payload_name = "sticky tar"
|
||||
desc = "For spreading sticky tar. Become the anti-janitor!"
|
||||
stage = READY
|
||||
|
||||
/obj/item/grenade/chem_grenade/tar/Initialize(mapload)
|
||||
. = ..()
|
||||
var/obj/item/reagent_containers/glass/beaker/beaker_1 = new(src)
|
||||
var/obj/item/reagent_containers/glass/beaker/beaker_2 = new(src)
|
||||
|
||||
beaker_1.reagents.add_reagent("sticky_tar", 15)
|
||||
beaker_1.reagents.add_reagent("potassium", 10)
|
||||
beaker_2.reagents.add_reagent("phosphorus", 10)
|
||||
beaker_2.reagents.add_reagent("sugar", 10)
|
||||
beakers += beaker_1
|
||||
beakers += beaker_2
|
||||
update_icon(UPDATE_ICON_STATE)
|
||||
|
||||
#undef EMPTY
|
||||
#undef WIRED
|
||||
#undef READY
|
||||
|
||||
@@ -232,6 +232,11 @@
|
||||
desc = "For when you need to do something between everything and nothing."
|
||||
payload = /obj/item/grenade/iedcasing
|
||||
|
||||
/obj/item/grenade/clusterbuster/tar
|
||||
name = "\improper Sticky Tar Cluster Grenade"
|
||||
desc = "Speed limit enforced by goop."
|
||||
payload = /obj/item/grenade/chem_grenade/tar
|
||||
|
||||
////////////Clusterbuster of Clusterbusters////////////
|
||||
//As a note: be extrodinarily careful about make the payload clusterbusters as it can quickly destroy the MC/Server
|
||||
|
||||
|
||||
Reference in New Issue
Block a user