* maps - none of our changes included yet i'll get them in after i finish up the rest of the sync * sync part 1 - underscore folders in code * controllers folder * datums folder * game folder * cmon, work * modules - admin to awaymissions * cargo to events * fields to lighting * mapping > ruins * rest of the code folder * rest of the folders in the root directory * DME * fixes compiling errors. it compiles so it works * readds map changes * fixes dogborg module select * fixes typo in moduleselect_alternate_icon filepath
113 lines
2.4 KiB
Plaintext
113 lines
2.4 KiB
Plaintext
/datum/export/toolbox
|
|
cost = 4
|
|
unit_name = "toolbox"
|
|
export_types = list(/obj/item/storage/toolbox)
|
|
|
|
// mechanical toolbox: 22cr
|
|
// emergency toolbox: 17-20cr
|
|
// electrical toolbox: 36cr
|
|
// robust: priceless
|
|
|
|
// Basic tools
|
|
/datum/export/screwdriver
|
|
cost = 2
|
|
unit_name = "screwdriver"
|
|
export_types = list(/obj/item/screwdriver)
|
|
include_subtypes = FALSE
|
|
|
|
/datum/export/wrench
|
|
cost = 2
|
|
unit_name = "wrench"
|
|
export_types = list(/obj/item/wrench)
|
|
|
|
/datum/export/crowbar
|
|
cost = 2
|
|
unit_name = "crowbar"
|
|
export_types = list(/obj/item/crowbar)
|
|
|
|
/datum/export/wirecutters
|
|
cost = 2
|
|
unit_name = "pair"
|
|
message = "of wirecutters"
|
|
export_types = list(/obj/item/wirecutters)
|
|
|
|
|
|
/datum/export/weldingtool
|
|
cost = 5
|
|
unit_name = "welding tool"
|
|
export_types = list(/obj/item/weldingtool)
|
|
include_subtypes = FALSE
|
|
|
|
/datum/export/weldingtool/emergency
|
|
cost = 2
|
|
unit_name = "emergency welding tool"
|
|
export_types = list(/obj/item/weldingtool/mini)
|
|
|
|
/datum/export/weldingtool/industrial
|
|
cost = 10
|
|
unit_name = "industrial welding tool"
|
|
export_types = list(/obj/item/weldingtool/largetank, /obj/item/weldingtool/hugetank)
|
|
|
|
|
|
/datum/export/extinguisher
|
|
cost = 15
|
|
unit_name = "fire extinguisher"
|
|
export_types = list(/obj/item/extinguisher)
|
|
include_subtypes = FALSE
|
|
|
|
/datum/export/extinguisher/mini
|
|
cost = 2
|
|
unit_name = "pocket fire extinguisher"
|
|
export_types = list(/obj/item/extinguisher/mini)
|
|
|
|
|
|
/datum/export/flashlight
|
|
cost = 5
|
|
unit_name = "flashlight"
|
|
export_types = list(/obj/item/flashlight)
|
|
include_subtypes = FALSE
|
|
|
|
/datum/export/flashlight/flare
|
|
cost = 2
|
|
unit_name = "flare"
|
|
export_types = list(/obj/item/flashlight/flare)
|
|
|
|
/datum/export/flashlight/seclite
|
|
cost = 10
|
|
unit_name = "seclite"
|
|
export_types = list(/obj/item/flashlight/seclite)
|
|
|
|
|
|
/datum/export/analyzer
|
|
cost = 5
|
|
unit_name = "analyzer"
|
|
export_types = list(/obj/item/analyzer)
|
|
|
|
/datum/export/analyzer/t_scanner
|
|
cost = 10
|
|
unit_name = "t-ray scanner"
|
|
export_types = list(/obj/item/t_scanner)
|
|
|
|
|
|
/datum/export/radio
|
|
cost = 5
|
|
unit_name = "radio"
|
|
export_types = list(/obj/item/radio)
|
|
exclude_types = list(/obj/item/radio/mech)
|
|
|
|
|
|
/datum/export/rcd
|
|
cost = 100
|
|
unit_name = "rapid construction device"
|
|
export_types = list(/obj/item/construction/rcd)
|
|
|
|
/datum/export/rcd_ammo
|
|
cost = 60
|
|
unit_name = "compressed matter cardridge"
|
|
export_types = list(/obj/item/rcd_ammo)
|
|
|
|
/datum/export/rpd
|
|
cost = 100
|
|
unit_name = "rapid piping device"
|
|
export_types = list(/obj/item/pipe_dispenser)
|