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.
32 lines
789 B
Plaintext
32 lines
789 B
Plaintext
/***********
|
|
* Grenades *
|
|
************/
|
|
/datum/uplink_item/item/grenades
|
|
category = /datum/uplink_category/grenades
|
|
|
|
/datum/uplink_item/item/grenades/manhack
|
|
name = "Manhack Delivery Grenade"
|
|
item_cost = 3
|
|
path = /obj/item/weapon/grenade/spawnergrenade/manhacks
|
|
|
|
/datum/uplink_item/item/grenades/anti_photon
|
|
name = "5xPhoton Disruption Grenades"
|
|
item_cost = 4
|
|
path = /obj/item/weapon/storage/box/anti_photons
|
|
|
|
/datum/uplink_item/item/grenades/smoke
|
|
name = "5xSmoke Grenades"
|
|
item_cost = 4
|
|
path = /obj/item/weapon/storage/box/smokes
|
|
|
|
/datum/uplink_item/item/grenades/emp
|
|
name = "5xEMP Grenades"
|
|
item_cost = 6
|
|
path = /obj/item/weapon/storage/box/emps
|
|
|
|
/datum/uplink_item/item/grenades/frag
|
|
name = "5xFrag Grenades"
|
|
item_cost = 12
|
|
path = /obj/item/weapon/storage/box/frags
|
|
|