mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
20 lines
643 B
Plaintext
20 lines
643 B
Plaintext
/obj/item/weapon/magnetic_ammo
|
|
name = "flechette magazine"
|
|
desc = "A magazine containing steel flechettes."
|
|
icon = 'icons/obj/ammo.dmi'
|
|
icon_state = "caseless-mag"
|
|
w_class = ITEMSIZE_SMALL
|
|
matter = list(DEFAULT_WALL_MATERIAL = 1800)
|
|
origin_tech = list(TECH_COMBAT = 1)
|
|
var/remaining = 9
|
|
preserve_item = 1
|
|
|
|
/obj/item/weapon/magnetic_ammo/examine(mob/user)
|
|
. = ..()
|
|
. += "There [(remaining == 1)? "is" : "are"] [remaining] flechette\s left!"
|
|
|
|
/obj/item/weapon/magnetic_ammo/pistol
|
|
name = "flechette magazine (small)"
|
|
desc = "A magazine containing smaller steel flechettes, intended for a pistol."
|
|
icon_state = "caseless-mag-short"
|