Botany stuffs

This commit is contained in:
Azarak
2019-12-06 17:54:19 +01:00
parent d2f1fe189e
commit db540ac496
19 changed files with 98 additions and 6 deletions
@@ -122,3 +122,19 @@
else
to_chat(user, "<span class='notice'>You can't put the [A] into \the [src]!</span>")
return FALSE
/obj/item/gun/syringe/blowgun
name = "blowgun"
desc = "Fire syringes at a short distance."
icon_state = "blowgun"
item_state = "blowgun"
fire_sound = 'sound/weapons/grenadelaunch.ogg'
/obj/item/gun/syringe/blowgun/process_fire(atom/target, mob/living/user, message = TRUE, params = null, zone_override = "", bonus_spread = 0)
visible_message("<span class='danger'>[user] starts aiming with a blowgun!</span>")
if(do_after(user, 25, target = src))
var/shot
shot = ..()
if (shot == TRUE)
user.adjustStaminaLoss(15)
user.adjustOxyLoss(15)