mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-05 11:24:11 +01:00
e4b0f292f8
- Tweaks the proc for Virgo uplink beacons to not give away information about traitors - Removes the Void Cell from antag uplinks - Adds a combat defibrillator for Mercenaries - Adds the cabin shelter capsule to uplinks - Adds some stuff for admin use of uplinks - Fixes bug with adminspawn ERT job not getting PDAs - Adds an admin command to set up an uplink on a character - Fixes Retired Admin to work properly - Splits off VORE's adminverb list for improved downstream support - Fixes retired staff not being able to talk in staff chats
23 lines
557 B
Plaintext
23 lines
557 B
Plaintext
/*************
|
|
* Ammunition *
|
|
*************/
|
|
/datum/uplink_item/item/ammo/cell
|
|
name = "Weapon cell"
|
|
|
|
/datum/uplink_item/item/ammo/highcell
|
|
name = "High capacity cell"
|
|
path = /obj/item/weapon/cell/high
|
|
item_cost = 15
|
|
|
|
/datum/uplink_item/item/ammo/supercell
|
|
name = "Super capacity cell"
|
|
path = /obj/item/weapon/cell/super
|
|
item_cost = 30
|
|
|
|
/datum/uplink_item/item/ammo/voidcell
|
|
name = "Void cell"
|
|
path = /obj/item/weapon/cell/device/weapon/recharge/alien/hybrid
|
|
item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5
|
|
antag_roles = list("ert")
|
|
blacklisted = 1
|