mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
66 lines
2.0 KiB
Plaintext
66 lines
2.0 KiB
Plaintext
/*************
|
|
* Ammunition *
|
|
*************/
|
|
/datum/uplink_item/item/ammo
|
|
item_cost = 4
|
|
category = /datum/uplink_category/ammunition
|
|
|
|
/datum/uplink_item/item/ammo/mc9mm
|
|
name = "9mm Magazine"
|
|
item_cost = 1
|
|
path = /obj/item/ammo_magazine/mc9mm
|
|
desc = "Contains ten rounds of 9mm bullets."
|
|
|
|
/datum/uplink_item/item/ammo/darts
|
|
name = "Chemical Darts"
|
|
item_cost = 1
|
|
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"
|
|
item_cost = 2
|
|
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 = 6
|
|
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)"
|
|
item_cost = 4
|
|
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"
|
|
item_cost = 2
|
|
path = /obj/item/ammo_magazine/a357
|
|
desc = "Contains eight rounds of .357 bullets."
|
|
|
|
/datum/uplink_item/item/ammo/sniperammo
|
|
name = "14.5mm box"
|
|
item_cost = 8
|
|
path = /obj/item/storage/box/sniperammo
|
|
desc = "Contains seven rounds of 14.5mm bullets, for use with the anti-materiel rifle."
|
|
|
|
/datum/uplink_item/item/ammo/shotgun_shells
|
|
name = "Box of Shells"
|
|
item_cost = 5
|
|
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 = 5
|
|
path = /obj/item/ammo_magazine/plasma
|
|
desc = "Contains ten plasma cells."
|
|
|
|
/datum/uplink_item/item/ammo/rifle_mag
|
|
name = "7.62mm clip"
|
|
item_cost = 4
|
|
path = /obj/item/ammo_magazine/boltaction
|
|
desc = "Contains five rounds of 7.62mm bullets." |