mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 19:52:40 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
69 lines
1.7 KiB
Plaintext
69 lines
1.7 KiB
Plaintext
/***********
|
|
* Grenades *
|
|
************/
|
|
/datum/uplink_item/item/grenades
|
|
category = /datum/uplink_category/grenades
|
|
|
|
/datum/uplink_item/item/grenades/anti_photon
|
|
name = "7xPhoton Disruption Grenades"
|
|
item_cost = 10
|
|
path = /obj/item/storage/box/anti_photons
|
|
|
|
/datum/uplink_item/item/grenades/anti_photon_singular
|
|
name = "1xPhoton Disruption Grenade"
|
|
item_cost = 2
|
|
path = /obj/item/grenade/anti_photon
|
|
|
|
/datum/uplink_item/item/grenades/metalfoam
|
|
name = "7xMetal Foam Grenades"
|
|
item_cost = 10
|
|
path = /obj/item/storage/box/metalfoam
|
|
|
|
/datum/uplink_item/item/grenades/metalfoam_singular
|
|
name = "1xMetal Foam Grenade"
|
|
item_cost = 2
|
|
path = /obj/item/grenade/chem_grenade/metalfoam
|
|
|
|
/datum/uplink_item/item/grenades/smoke
|
|
name = "7xSmoke Grenades"
|
|
item_cost = 10
|
|
path = /obj/item/storage/box/smokes
|
|
|
|
/datum/uplink_item/item/grenades/smoke_singular
|
|
name = "1xSmoke Grenade"
|
|
item_cost = 2
|
|
path = /obj/item/grenade/smokebomb
|
|
|
|
/datum/uplink_item/item/grenades/emp
|
|
name = "7xEMP Grenades"
|
|
item_cost = 50
|
|
path = /obj/item/storage/box/emps
|
|
|
|
/datum/uplink_item/item/grenades/emp_singular
|
|
name = "1xEMP Grenade"
|
|
item_cost = 10
|
|
path = /obj/item/grenade/empgrenade
|
|
|
|
/datum/uplink_item/item/grenades/frags
|
|
name = "7xFrag Grenades"
|
|
item_cost = 80
|
|
path = /obj/item/storage/box/frags
|
|
|
|
/datum/uplink_item/item/grenades/frags_half
|
|
name = "4x Frag Grenade"
|
|
item_cost = 50
|
|
path = /obj/item/storage/box/frags_half_box
|
|
|
|
/datum/uplink_item/item/grenades/frags_singular
|
|
name = "1x Frag Grenade"
|
|
item_cost = 15
|
|
path = /obj/item/grenade/explosive
|
|
|
|
/datum/uplink_item/item/grenades/flashbangs
|
|
name = "7xFlashbangs"
|
|
item_cost = 40
|
|
path = /obj/item/storage/box/flashbangs
|
|
|
|
/datum/uplink_item/item/grenades/flashbangs_singular
|
|
name = "1xFlashbang"
|
|
item_cost = 8 |