mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 16:42:13 +00:00
Rearranges some items in the uplink datums so they all go from least expensive to most expensive. It appears that most items were already placed like that.
37 lines
840 B
Plaintext
37 lines
840 B
Plaintext
/*************
|
|
* Ammunition *
|
|
*************/
|
|
/datum/uplink_item/item/ammo
|
|
item_cost = 4
|
|
category = /datum/uplink_category/ammunition
|
|
|
|
/datum/uplink_item/item/ammo/mc9mm
|
|
name = "9mm"
|
|
item_cost = 1
|
|
path = /obj/item/ammo_magazine/mc9mm
|
|
|
|
/datum/uplink_item/item/ammo/darts
|
|
name = "Darts"
|
|
item_cost = 1
|
|
path = /obj/item/ammo_magazine/chemdart
|
|
|
|
/datum/uplink_item/item/ammo/tommygunmag
|
|
name = "Tommygun Magazine (.45)"
|
|
item_cost = 2
|
|
path = /obj/item/ammo_magazine/tommymag
|
|
|
|
/datum/uplink_item/item/ammo/a357
|
|
name = ".357"
|
|
item_cost = 2
|
|
path = /obj/item/ammo_magazine/a357
|
|
|
|
/datum/uplink_item/item/ammo/tommygundrum
|
|
name = "Tommygun Drum Magazine (.45)"
|
|
item_cost = 4
|
|
path = /obj/item/ammo_magazine/tommydrum
|
|
|
|
/datum/uplink_item/item/ammo/sniperammo
|
|
name = "14.5mm"
|
|
item_cost = 4
|
|
path = /obj/item/weapon/storage/box/sniperammo
|