mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-24 00:21:52 +00:00
* repaths neurotoxin + embedding changes in bullets + adds effects when you shoot energy weapons (#52543) * how * Update alien_powers.dm * adds impact effects, makes thinks that shouldnt embed not embed * rogue pixel moment * repaths neurotoxin + embedding changes in bullets + adds effects when you shoot energy weapons Co-authored-by: Fikou <piotrbryla@onet.pl>
14 lines
304 B
Plaintext
14 lines
304 B
Plaintext
// 40mm (Grenade Launcher
|
|
|
|
/obj/projectile/bullet/a40mm
|
|
name ="40mm grenade"
|
|
desc = "USE A WEEL GUN"
|
|
icon_state= "bolter"
|
|
damage = 60
|
|
embedding = null
|
|
|
|
/obj/projectile/bullet/a40mm/on_hit(atom/target, blocked = FALSE)
|
|
..()
|
|
explosion(target, -1, 0, 2, 1, 0, flame_range = 3)
|
|
return BULLET_ACT_HIT
|