mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-19 05:09:49 +01:00
29 lines
676 B
Plaintext
29 lines
676 B
Plaintext
/*************
|
|
* Ammunition *
|
|
*************/
|
|
/datum/uplink_item/item/ammo/cell
|
|
name = "Weapon cell"
|
|
item_cost = 10
|
|
|
|
/datum/uplink_item/item/ammo/cell/box
|
|
name = "Weapon cell box"
|
|
path = /obj/item/storage/box/weapon_cells
|
|
item_cost = 70
|
|
|
|
/datum/uplink_item/item/ammo/highcell
|
|
name = "High capacity cell"
|
|
path = /obj/item/cell/high
|
|
item_cost = 15
|
|
|
|
/datum/uplink_item/item/ammo/supercell
|
|
name = "Super capacity cell"
|
|
path = /obj/item/cell/super
|
|
item_cost = 30
|
|
|
|
/datum/uplink_item/item/ammo/voidcell
|
|
name = "Void cell"
|
|
path = /obj/item/cell/device/weapon/recharge/alien/hybrid
|
|
item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5
|
|
antag_roles = list("ert")
|
|
blacklisted = 1
|