mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-25 00:51:55 +00:00
* Nukies Update 7: Hats (Also massive uplink standardization, weapon kits and ammo changes) * Update nukeops.dm * Update clownops.dm * Modular fixes --------- Co-authored-by: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
24 lines
725 B
Plaintext
24 lines
725 B
Plaintext
/obj/item/ammo_box/magazine/m10mm/rifle
|
|
name = "rifle magazine (10mm)"
|
|
desc = "A well-worn magazine fitted for the surplus rifle."
|
|
icon_state = "75-full"
|
|
base_icon_state = "75"
|
|
ammo_type = /obj/item/ammo_casing/c10mm
|
|
max_ammo = 10
|
|
|
|
/obj/item/ammo_box/magazine/m10mm/rifle/update_icon_state()
|
|
. = ..()
|
|
icon_state = "[base_icon_state]-[LAZYLEN(stored_ammo) ? "full" : "empty"]"
|
|
|
|
/obj/item/ammo_box/magazine/m223
|
|
name = "toploader magazine (.223)"
|
|
icon_state = ".223"
|
|
ammo_type = /obj/item/ammo_casing/a223
|
|
caliber = CALIBER_A223
|
|
max_ammo = 30
|
|
multiple_sprites = AMMO_BOX_FULL_EMPTY
|
|
|
|
/obj/item/ammo_box/magazine/m223/phasic
|
|
name = "toploader magazine (.223 Phasic)"
|
|
ammo_type = /obj/item/ammo_casing/a223/phasic
|