mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
More miscellaneous changes
This commit is contained in:
20
code/datums/uplink/ammunition_vr.dm
Normal file
20
code/datums/uplink/ammunition_vr.dm
Normal file
@@ -0,0 +1,20 @@
|
||||
/*************
|
||||
* 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
|
||||
@@ -1,25 +1,10 @@
|
||||
/**********
|
||||
* Medical *
|
||||
**********/
|
||||
/datum/uplink_item/item/medical/fire
|
||||
name = "Fire medical kit"
|
||||
item_cost = 10
|
||||
path = /obj/item/weapon/storage/firstaid/fire
|
||||
|
||||
/datum/uplink_item/item/medical/toxin
|
||||
name = "Toxin medical kit"
|
||||
item_cost = 10
|
||||
path = /obj/item/weapon/storage/firstaid/toxin
|
||||
|
||||
/datum/uplink_item/item/medical/o2
|
||||
name = "Oxygen medical kit"
|
||||
item_cost = 10
|
||||
path = /obj/item/weapon/storage/firstaid/o2
|
||||
|
||||
/datum/uplink_item/item/medical/adv
|
||||
name = "Advanced medical kit"
|
||||
item_cost = 10
|
||||
path = /obj/item/weapon/storage/firstaid/adv
|
||||
/datum/uplink_item/item/medical/pizza
|
||||
name = "Free Pizza Voucher"
|
||||
item_cost = 5
|
||||
path = /obj/item/pizzavoucher
|
||||
|
||||
/datum/uplink_item/item/medical/mre
|
||||
name = "Meal, Ready to eat (Random)"
|
||||
@@ -36,6 +21,11 @@
|
||||
item_cost = 5
|
||||
path = /obj/item/weapon/storage/mre/menu11
|
||||
|
||||
/datum/uplink_item/item/medical/medical
|
||||
name = "Meal, Ready to eat (medical)"
|
||||
item_cost = 5
|
||||
path = /obj/item/weapon/storage/mre/menu13
|
||||
|
||||
/datum/uplink_item/item/medical/glucose
|
||||
name = "Glucose injector"
|
||||
item_cost = 5
|
||||
@@ -71,11 +61,41 @@
|
||||
item_cost = 5
|
||||
path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/oxy
|
||||
|
||||
/datum/uplink_item/item/medical/fire
|
||||
name = "Fire medical kit"
|
||||
item_cost = 10
|
||||
path = /obj/item/weapon/storage/firstaid/fire
|
||||
|
||||
/datum/uplink_item/item/medical/toxin
|
||||
name = "Toxin medical kit"
|
||||
item_cost = 10
|
||||
path = /obj/item/weapon/storage/firstaid/toxin
|
||||
|
||||
/datum/uplink_item/item/medical/o2
|
||||
name = "Oxygen medical kit"
|
||||
item_cost = 10
|
||||
path = /obj/item/weapon/storage/firstaid/o2
|
||||
|
||||
/datum/uplink_item/item/medical/adv
|
||||
name = "Advanced medical kit"
|
||||
item_cost = 10
|
||||
path = /obj/item/weapon/storage/firstaid/adv
|
||||
|
||||
/datum/uplink_item/item/medical/organ
|
||||
name = "Organ Repair injector"
|
||||
item_cost = 10
|
||||
path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/organ
|
||||
|
||||
/datum/uplink_item/item/medical/stasis
|
||||
name = "Stasis Bag"
|
||||
item_cost = 20
|
||||
path = /obj/item/bodybag/cryobag
|
||||
|
||||
/datum/uplink_item/item/medical/synth
|
||||
name = "Synthmorph Bag"
|
||||
item_cost = 20
|
||||
path = /obj/item/bodybag/cryobag/robobag
|
||||
|
||||
/datum/uplink_item/item/medical/nanites
|
||||
name = "Healing Nanite pill bottle"
|
||||
item_cost = 30
|
||||
|
||||
@@ -1,6 +1,21 @@
|
||||
/********************
|
||||
* Devices and Tools *
|
||||
********************/
|
||||
/datum/uplink_item/item/tools/oxygen
|
||||
name = "Emergency Oxygen Tank"
|
||||
item_cost = 2
|
||||
path = /obj/item/weapon/tank/emergency/oxygen/double
|
||||
|
||||
/datum/uplink_item/item/tools/phoron
|
||||
name = "Emergency Phoron Tank"
|
||||
item_cost = 2
|
||||
path = /obj/item/weapon/tank/emergency/phoron/double
|
||||
|
||||
/datum/uplink_item/item/tools/suitcooler
|
||||
name = "Emergency Suit Cooler"
|
||||
item_cost = 2
|
||||
path = /obj/item/device/suit_cooling_unit/emergency
|
||||
|
||||
/datum/uplink_item/item/tools/basiclaptop
|
||||
name = "Laptop (Basic)"
|
||||
item_cost = 5
|
||||
@@ -16,6 +31,11 @@
|
||||
item_cost = 10
|
||||
path = /obj/item/stack/nanopaste/advanced
|
||||
|
||||
/datum/uplink_item/item/tools/autolok
|
||||
name = "Autolok Voidsuit"
|
||||
item_cost = 10
|
||||
path = /obj/item/clothing/suit/space/void/autolok
|
||||
|
||||
/datum/uplink_item/item/tools/elitetablet
|
||||
name = "Tablet (Advanced)"
|
||||
item_cost = 15
|
||||
|
||||
Reference in New Issue
Block a user