/
githubmirror
/
vgstation13
Обзор
Документация
Войти
/
githubmirror
/
vgstation13
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
Bleeding-Edge
code/modules/research/designs/mining.dm
103 строки
4 KB
jwhitak
initial version (#38376)
19 сен 2025, 15:24
Не верифицирован
19 сен 2025, 15:24
f7a5d7e
Код
Авторство
О чём код?
/datum/design/jackhammer name = "Sonic Jackhammer" desc = "Cracks rocks with sonic blasts, perfect for killing cave lizards." id = "jackhammer" req_tech = list(Tc_MATERIALS = 3, Tc_POWERSTORAGE = 2, Tc_ENGINEERING = 2) build_type = PROTOLATHE materials = list(MAT_IRON = 2000, MAT_GLASS = 500, MAT_SILVER = 500) category = "Mining" build_path = /obj/item/weapon/pickaxe/jackhammer /datum/design/drill name = "Mining Drill" desc = "Yours is the drill that will pierce through the rock walls." id = "drill" req_tech = list(Tc_MATERIALS = 2, Tc_POWERSTORAGE = 3, Tc_ENGINEERING = 2) build_type = PROTOLATHE materials = list(MAT_IRON = 6000, MAT_GLASS = 1000) //expensive, but no need for miners. category = "Mining" build_path = /obj/item/weapon/pickaxe/drill /datum/design/plasmacutter name = "Plasma Cutter" desc = "A rock cutter that uses bursts of hot plasma." id = "plasmacutter" req_tech = list(Tc_MATERIALS = 4, Tc_PLASMATECH = 3, Tc_ENGINEERING = 3) build_type = PROTOLATHE materials = list(MAT_IRON = 1500, MAT_GLASS = 500, MAT_GOLD = 500, MAT_PLASMA = 500) reliability_base = 79 category = "Mining" build_path = /obj/item/weapon/pickaxe/plasmacutter /datum/design/plasmacutterkit name = "Advanced Plasma Cutter Conversion kit" desc = "A set of tools that enables conversion of a plasma cutter into a more advanced form. Needs to be loaded with the parts of a proto-kinetic accelerator first." id = "plasmacutterkit" req_tech = list(Tc_MATERIALS = 4, Tc_PLASMATECH = 3, Tc_ENGINEERING = 3, Tc_NANOTRASEN = 1) build_type = PROTOLATHE materials = list(MAT_IRON = 1500, MAT_GLASS = 500, MAT_GOLD = 500, MAT_PLASMA = 1000, MAT_DIAMOND = 3750) reliability_base = 79 category = "Mining" build_path = /obj/item/device/modkit/plasmacutter /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(Tc_MATERIALS = 6) build_type = PROTOLATHE materials = list(MAT_DIAMOND = 3000) category = "Mining" build_path = /obj/item/weapon/pickaxe/diamond /datum/design/drill_diamond name = "Diamond Mining Drill" desc = "Yours is the drill that will pierce the heavens!" id = "drill_diamond" req_tech = list(Tc_MATERIALS = 6, Tc_POWERSTORAGE = 4, Tc_ENGINEERING = 4) build_type = PROTOLATHE materials = list(MAT_IRON = 3000, MAT_GLASS = 1000, MAT_DIAMOND = 3750) //Yes, a whole diamond is needed. reliability_base = 79 category = "Mining" build_path = /obj/item/weapon/pickaxe/drill/diamond /datum/design/auto_ore name = "Automatic Ore Loader" desc = "Used to automatically pick up ore." id = "auto_ore" req_tech = list(Tc_MATERIALS = 6, Tc_POWERSTORAGE = 4, Tc_ENGINEERING = 4) build_type = PROTOLATHE materials = list(MAT_IRON = 1500, MAT_GLASS = 1000, MAT_SILVER = 200, MAT_GOLD = 200) reliability_base = 79 category = "Mining" build_path = /obj/item/weapon/storage/bag/ore/auto /datum/design/mesons name = "Optical Meson Scanners" desc = "Used for seeing walls, floors, and stuff through anything." id = "mesons" req_tech = list(Tc_MAGNETS = 2, Tc_ENGINEERING = 2) build_type = PROTOLATHE materials = list(MAT_IRON = 50, MAT_GLASS = 50) category = "Mining" build_path = /obj/item/clothing/glasses/scanner/meson /datum/design/excavationdrill name = "Excavation Drill" desc = "Basic archaeological drill combining ultrasonic excitation and bluespace manipulation to provide extreme precision. The tip is adjustable from 1 to 30 cms." id = "excavationdrill" req_tech = list(Tc_MATERIALS = 2, Tc_POWERSTORAGE = 3, Tc_ENGINEERING = 3, Tc_BLUESPACE = 3) build_type = PROTOLATHE materials = list(MAT_IRON = 6000, MAT_GLASS = 1000) category = "Mining" build_path = /obj/item/weapon/pickaxe/excavationdrill /datum/design/Dexcavationdrill name = "Diamond Excavation Drill" desc = "Advanced archaeological drill combining ultrasonic excitation and bluespace manipulation to provide extreme precision. The diamond tip is adjustable from 1 to 100 cms." id = "Dexcavationdrill" req_tech = list(Tc_MATERIALS = 6, Tc_POWERSTORAGE = 3, Tc_ENGINEERING = 3, Tc_BLUESPACE = 4) build_type = PROTOLATHE materials = list(MAT_IRON = 5000, MAT_GLASS = 1000, MAT_SILVER = 1000, MAT_DIAMOND = 750) category = "Mining" build_path = /obj/item/weapon/pickaxe/excavationdrill/adv