mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
64 lines
2.0 KiB
Plaintext
64 lines
2.0 KiB
Plaintext
/*************
|
|
* Ammunition *
|
|
*************/
|
|
/datum/uplink_item/item/ammo
|
|
item_cost = 1
|
|
category = /datum/uplink_category/ammunition
|
|
|
|
/datum/uplink_item/item/ammo/mc9mm
|
|
name = "9mm Magazine"
|
|
path = /obj/item/ammo_magazine/mc9mm
|
|
desc = "Contains ten rounds of 9mm bullets."
|
|
|
|
/datum/uplink_item/item/ammo/darts
|
|
name = "Chemical Darts"
|
|
path = /obj/item/ammo_magazine/chemdart
|
|
desc = "Contains five chemical darts for use with a dart gun."
|
|
|
|
/datum/uplink_item/item/ammo/fourty_five
|
|
name = ".45 Pistol Magazine"
|
|
path = /obj/item/ammo_magazine/c45m
|
|
desc = "Contains seven rounds of .45 bullets."
|
|
|
|
/datum/uplink_item/item/ammo/submachinegundrum
|
|
name = "Submachine Gun Drum Magazine (.45)"
|
|
item_cost = 2
|
|
path = /obj/item/ammo_magazine/submachinedrum
|
|
desc = "Contains fifty rounds of .45 bullets, for use with the vintage submachine gun."
|
|
|
|
/datum/uplink_item/item/ammo/submachinegunmag
|
|
name = "Submachine Gun Magazine (.45)"
|
|
path = /obj/item/ammo_magazine/submachinemag
|
|
desc = "Contains twenty rounds of .45 bullets, for use with the vintage submachine gun."
|
|
|
|
/datum/uplink_item/item/ammo/a357
|
|
name = ".357 Speedloader"
|
|
path = /obj/item/ammo_magazine/a357
|
|
desc = "Contains eight rounds of .357 bullets."
|
|
|
|
/datum/uplink_item/item/ammo/shotgun_shells
|
|
name = "Box of Shells"
|
|
path = /obj/item/storage/box/shotgunshells
|
|
desc = "Contains eight shotgun buckshot shells."
|
|
|
|
/datum/uplink_item/item/ammo/plasma_mag
|
|
name = "Plasma Shotgun Magazine"
|
|
item_cost = 2
|
|
path = /obj/item/ammo_magazine/plasma
|
|
desc = "Contains ten plasma cells."
|
|
|
|
/datum/uplink_item/item/ammo/rifle_mag
|
|
name = "7.62mm clip"
|
|
path = /obj/item/ammo_magazine/boltaction
|
|
desc = "Contains five rounds of 7.62mm bullets."
|
|
|
|
/datum/uplink_item/item/ammo/peac
|
|
name = "Anti-materiel Cannon Cartridge"
|
|
path = /obj/item/ammo_casing/peac
|
|
desc = "Contains one anti-materiel cannon cartridge."
|
|
|
|
/datum/uplink_item/item/ammo/super_heavy
|
|
name = "K2557 Magazine"
|
|
item_cost = 2
|
|
path = /obj/item/ammo_magazine/super_heavy
|
|
desc = "A spare magazine, for the super heavy K2557 pistol." |