mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 19:44:09 +01:00
Smoke Grenade Module + Blob Buff (#24224)
* is good for you * DESCRIPTION * fix * Update code/modules/mod/modules/modules_security.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --------- Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
This commit is contained in:
@@ -289,3 +289,18 @@
|
||||
C.reagents.add_reagent("ice", reagent_volume)
|
||||
qdel(src)
|
||||
|
||||
/// Smoke Grenade Module, its tacticool.
|
||||
/obj/item/mod/module/dispenser/smoke
|
||||
name = "MOD smoke grenade dispenser module"
|
||||
desc = "A module that dispenses primed smoke grenades to disperse crowds."
|
||||
icon_state = "smoke_grenade"
|
||||
cooldown_time = 10 SECONDS
|
||||
complexity = 1
|
||||
overlay_state_inactive = "module_smoke_grenade"
|
||||
dispense_type = /obj/item/grenade/smokebomb
|
||||
|
||||
/obj/item/mod/module/dispenser/smoke/on_use()
|
||||
var/obj/item/grenade/smokebomb/grenade = ..()
|
||||
if(!grenade)
|
||||
return
|
||||
grenade.attack_self(mod.wearer)
|
||||
|
||||
@@ -338,6 +338,13 @@
|
||||
materials = list(MAT_METAL = 10000, MAT_GLASS = 4000, MAT_SILVER = 2000)
|
||||
build_path = /obj/item/mod/module/plasma_stabilizer
|
||||
|
||||
/datum/design/module/smoke_grenade
|
||||
name = "Smoke Grenade Module"
|
||||
id = "mod_smokegrenade"
|
||||
req_tech = list("materials" = 5, "engineering" = 6, "syndicate" = 2)
|
||||
materials = list(MAT_METAL = 12500, MAT_SILVER = 12050, MAT_GOLD = 2000, MAT_PLASMA = 5000)
|
||||
build_path = /obj/item/mod/module/dispenser/smoke
|
||||
|
||||
/datum/design/module/plate_compression
|
||||
name = "Plate Compression Module"
|
||||
id = "mod_compression"
|
||||
|
||||
Reference in New Issue
Block a user