This commit is contained in:
alberyk
2022-01-19 02:03:58 -03:00
parent b9ec7f6158
commit a61da95fc8
6 changed files with 62 additions and 7 deletions

View File

@@ -327,3 +327,22 @@
use_external_power = 1
recharge_time = 12
needspin = FALSE
/obj/item/gun/projectile/gauss/carbine
name = "gauss carbine"
desc = "A simple gun utilizing the gauss technology. It is still reliable and cheap despite being outdated."
w_class = ITEMSIZE_LARGE
slot_flags = SLOT_BACK
ammo_type = /obj/item/ammo_casing/gauss/carbine
load_method = SINGLE_CASING
handle_casings = HOLD_CASINGS
max_shells = 1
fire_delay_wielded = 20
accuracy_wielded = 1
/obj/item/gun/projectile/gauss/carbine/special_check(mob/user)
if(!wielded)
to_chat(user, SPAN_WARNING("You can't fire without stabilizing \the [src]!"))
return 0
return ..()