* Splits projectiles into different files for readability * Update tgstation.dme * I love how the dme cleans itself up
15 lines
536 B
Plaintext
15 lines
536 B
Plaintext
/obj/item/ammo_box/magazine/recharge
|
|
name = "power pack"
|
|
desc = "A rechargeable, detachable battery that serves as a magazine for laser rifles."
|
|
icon_state = "oldrifle-20"
|
|
ammo_type = /obj/item/ammo_casing/caseless/laser
|
|
caliber = "laser"
|
|
max_ammo = 20
|
|
|
|
/obj/item/ammo_box/magazine/recharge/update_icon()
|
|
desc = "[initial(desc)] It has [stored_ammo.len] shot\s left."
|
|
icon_state = "oldrifle-[round(ammo_count(),4)]"
|
|
|
|
/obj/item/ammo_box/magazine/recharge/attack_self() //No popping out the "bullets"
|
|
return
|