mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +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>
24 lines
766 B
Plaintext
24 lines
766 B
Plaintext
/*
|
|
P - teleporteing item stuff
|
|
*/
|
|
|
|
/datum/design/item/teleport/AssembleDesignName()
|
|
..()
|
|
name = "Teleportation device prototype ([item_name])"
|
|
|
|
/datum/design/item/teleport/translocator
|
|
name = "Personal translocator"
|
|
id = "translocator"
|
|
req_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5, TECH_ILLEGAL = 6)
|
|
materials = list(MAT_STEEL = 4000, MAT_GLASS = 2000, MAT_URANIUM = 4000, MAT_DIAMOND = 2000)
|
|
build_path = /obj/item/perfect_tele
|
|
sort_string = "PAAAA"
|
|
|
|
/datum/design/item/teleport/bluespace_crystal
|
|
name = "Artificial Bluespace Crystal"
|
|
id = "bluespace_crystal"
|
|
req_tech = list(TECH_BLUESPACE = 3, TECH_PHORON = 4)
|
|
materials = list(MAT_DIAMOND = 1500, MAT_PHORON = 1500)
|
|
build_path = /obj/item/bluespace_crystal/artificial
|
|
sort_string = "PAAAB"
|