mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-09 22:25:46 +01:00
3fd9106d5a
* Clean up grenades * Update clusterbuster.dm * Update grenade.dm * Update flashbang.dm * Update grenade.dm * Update frag.dm * Update code/game/objects/items/weapons/grenades/frag.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * Update code/game/objects/items/weapons/grenades/ghettobomb.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * update * Update code/game/objects/items/weapons/grenades/frag.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * update * update * Apply suggestions from code review Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * Update grenade.dm * Update code/game/objects/items/weapons/grenades/frag.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * extra var --------- Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
12 lines
318 B
Plaintext
12 lines
318 B
Plaintext
/obj/item/grenade/empgrenade
|
|
name = "classic EMP grenade"
|
|
desc = "Upon detonation, releases a powerful EMP that will wreak havoc on electronic systems."
|
|
icon_state = "emp"
|
|
item_state = "emp"
|
|
origin_tech = "magnets=3;combat=2"
|
|
|
|
/obj/item/grenade/empgrenade/prime()
|
|
update_mob()
|
|
empulse(src, 4, 10, 1)
|
|
qdel(src)
|