mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-23 16:57:14 +01:00
completely overhauls ammo, magazines, and calibers; makes things a lot more standardized and efficient.
16 lines
462 B
Plaintext
16 lines
462 B
Plaintext
/obj/item/magnetic_ammo
|
|
name = "flechette magazine"
|
|
desc = "A magazine containing steel flechettes."
|
|
|
|
icon = 'icons/modules/projectiles/magazines/old_magazine_stick.dmi'
|
|
icon_state = "svtmag-1"
|
|
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
materials_base = list(MAT_STEEL = 1800)
|
|
origin_tech = list(TECH_COMBAT = 1)
|
|
var/remaining = 9
|
|
|
|
/obj/item/magnetic_ammo/examine(mob/user, dist)
|
|
. = ..()
|
|
. += "There [(remaining == 1)? "is" : "are"] [remaining] flechette\s left!"
|