Ports Bay's railguns, and assorted gun sprites

This commit is contained in:
Anewbe
2017-10-02 17:29:24 -05:00
parent 54f9c858ac
commit a248a4a4a1
14 changed files with 473 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
/obj/item/weapon/magnetic_ammo
name = "flechette magazine"
desc = "A magazine containing steel flechettes."
icon = 'icons/obj/ammo.dmi'
icon_state = "5.56"
w_class = ITEMSIZE_SMALL
matter = list(DEFAULT_WALL_MATERIAL = 1800)
origin_tech = list(TECH_COMBAT = 1)
var/remaining = 9
/obj/item/weapon/magnetic_ammo/examine(mob/user)
. = ..()
to_chat(user, "There [(remaining == 1)? "is" : "are"] [remaining] flechette\s left!")