mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-25 17:51:17 +00:00
95 lines
4.0 KiB
Plaintext
95 lines
4.0 KiB
Plaintext
/////////////////////////////////////////
|
|
/////////////////Mining//////////////////
|
|
/////////////////////////////////////////
|
|
/datum/design/drill_diamond
|
|
name = "Diamond Mining Drill"
|
|
desc = "Yours is the drill that will pierce the heavens!"
|
|
id = "drill_diamond"
|
|
req_tech = list("materials" = 6, "powerstorage" = 4, "engineering" = 4)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL = 3000, MAT_GLASS = 1000, MAT_DIAMOND = 2000) //Yes, a whole diamond is needed.
|
|
reliability = 79
|
|
build_path = /obj/item/weapon/pickaxe/drill/diamonddrill
|
|
category = list("Mining")
|
|
|
|
/datum/design/pick_diamond
|
|
name = "Diamond Pickaxe"
|
|
desc = "A pickaxe with a diamond pick head, this is just like minecraft."
|
|
id = "pick_diamond"
|
|
req_tech = list("materials" = 6)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_DIAMOND = 3000)
|
|
build_path = /obj/item/weapon/pickaxe/diamond
|
|
category = list("Mining")
|
|
|
|
/datum/design/drill
|
|
name = "Mining Drill"
|
|
desc = "Yours is the drill that will pierce through the rock walls."
|
|
id = "drill"
|
|
req_tech = list("materials" = 2, "powerstorage" = 3, "engineering" = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL = 6000, MAT_GLASS = 1000)
|
|
build_path = /obj/item/weapon/pickaxe/drill
|
|
category = list("Mining")
|
|
|
|
/datum/design/plasmacutter
|
|
name = "Plasma Cutter"
|
|
desc = "You could use it to cut limbs off of xenos! Or, you know, mine stuff."
|
|
id = "plasmacutter"
|
|
req_tech = list("materials" = 2, "plasmatech" = 2, "engineering" = 2, "combat" = 1, "magnets" = 2)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL = 1500, MAT_GLASS = 500, MAT_GOLD = 500, MAT_PLASMA = 500)
|
|
reliability = 79
|
|
build_path = /obj/item/weapon/gun/energy/plasmacutter
|
|
category = list("Mining")
|
|
|
|
/datum/design/plasmacutter_adv
|
|
name = "Advanced Plasma Cutter"
|
|
desc = "It's an advanced plasma cutter, oh my god."
|
|
id = "plasmacutter_adv"
|
|
req_tech = list("materials" = 4, "plasmatech" = 3, "engineering" = 3, "combat" = 3, "magnets" = 3)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL = 3000, MAT_GLASS = 1000, MAT_PLASMA = 2000, MAT_GOLD = 500)
|
|
reliability = 79
|
|
build_path = /obj/item/weapon/gun/energy/plasmacutter/adv
|
|
category = list("Mining")
|
|
|
|
/datum/design/jackhammer
|
|
name = "Sonic Jackhammer"
|
|
desc = "Essentially a handheld planet-cracker. Can drill through walls with ease as well."
|
|
id = "jackhammer"
|
|
req_tech = list("materials" = 6, "powerstorage" = 6, "engineering" = 5, "magnets" = 6)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL = 6000, MAT_GLASS = 2000, MAT_SILVER = 2000, MAT_DIAMOND = 6000)
|
|
build_path = /obj/item/weapon/pickaxe/drill/jackhammer
|
|
category = list("Mining")
|
|
|
|
/datum/design/superaccelerator
|
|
name = "Super-Kinetic Accelerator"
|
|
desc = "An upgraded version of the proto-kinetic accelerator, with superior damage, speed and range."
|
|
id = "superaccelerator"
|
|
req_tech = list("materials" = 5, "powerstorage" = 4, "engineering" = 4, "magnets" = 4, "combat" = 3)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL = 8000, MAT_GLASS = 1500, MAT_SILVER = 2000, MAT_URANIUM = 2000)
|
|
build_path = /obj/item/weapon/gun/energy/kinetic_accelerator/super
|
|
category = list("Mining")
|
|
|
|
/datum/design/hyperaccelerator
|
|
name = "Hyper-Kinetic Accelerator"
|
|
desc = "An upgraded version of the proto-kinetic accelerator, with even more superior damage, speed and range."
|
|
id = "hyperaccelerator"
|
|
req_tech = list("materials" = 6, "powerstorage" = 6, "engineering" = 5, "magnets" = 6, "combat" = 4)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL = 8000, MAT_GLASS = 1500, MAT_SILVER = 2000, MAT_GOLD = 2000, MAT_DIAMOND = 2000)
|
|
build_path = /obj/item/weapon/gun/energy/kinetic_accelerator/hyper
|
|
category = list("Mining")
|
|
|
|
/datum/design/superresonator
|
|
name = "Upgraded Resonator"
|
|
desc = "An upgraded version of the resonator that allows more fields to be active at once."
|
|
id = "superresonator"
|
|
req_tech = list("materials" = 4, "powerstorage" = 3, "engineering" = 3, "magnets" = 3)
|
|
build_type = PROTOLATHE
|
|
materials = list(MAT_METAL = 4000, MAT_GLASS = 1500, MAT_SILVER = 2000, MAT_URANIUM = 2000)
|
|
build_path = /obj/item/weapon/resonator/upgraded
|
|
category = list("Mining") |