mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-29 06:58:30 +01:00
Cryogaia Archiving Part 1 (#19184)
* some of it * storage explorer suits, and Victorian suits * trailer blazers * clean up * trailblazers in techweb * mined turf needs to work too * icepick and shovel teckweb * wrong path * backward * rename that
This commit is contained in:
@@ -945,3 +945,73 @@
|
||||
RND_CATEGORY_TOOLS
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_MEDICAL
|
||||
|
||||
/datum/design_techweb/marker_beacon
|
||||
name = "Marker Beacons"
|
||||
desc = "Prismatic path illumination devices. Used by explorers and miners to mark paths and warn of danger."
|
||||
id = "marker_beacon"
|
||||
build_type = PROTOLATHE | AUTOLATHE
|
||||
materials = list(MAT_STEEL = 500, MAT_GLASS = 2000)
|
||||
build_path = /obj/item/stack/marker_beacon/ten
|
||||
category = list(
|
||||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_MINING
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_CARGO
|
||||
|
||||
/datum/design_techweb/trailblazer_red
|
||||
name = "Trailblazer Red"
|
||||
desc = "A glowing stick embedded in the ground with a light on top, commonly used in snowy installations and in tundra conditions. This one is red."
|
||||
id = "trailblazer_red"
|
||||
build_type = PROTOLATHE | AUTOLATHE
|
||||
materials = list(MAT_STEEL = 5000, MAT_GLASS = 3000)
|
||||
build_path = /obj/item/stack/lightpole/red
|
||||
category = list(
|
||||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_MINING
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_CARGO
|
||||
|
||||
/datum/design_techweb/trailblazer_blue
|
||||
name = "Trailblazer Blue"
|
||||
desc = "A glowing stick embedded in the ground with a light on top, commonly used in snowy installations and in tundra conditions. This one is blue."
|
||||
id = "trailblazer_blue"
|
||||
build_type = PROTOLATHE | AUTOLATHE
|
||||
materials = list(MAT_STEEL = 5000, MAT_GLASS = 3000)
|
||||
build_path = /obj/item/stack/lightpole/blue
|
||||
category = list(
|
||||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_MINING
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_CARGO
|
||||
|
||||
/datum/design_techweb/trailblazer_yellow
|
||||
name = "Trailblazer Yellow"
|
||||
desc = "A glowing stick embedded in the ground with a light on top, commonly used in snowy installations and in tundra conditions. This one is yellow."
|
||||
id = "trailblazer_yellow"
|
||||
build_type = PROTOLATHE | AUTOLATHE
|
||||
materials = list(MAT_STEEL = 5000, MAT_GLASS = 3000)
|
||||
build_path = /obj/item/stack/lightpole/yellow
|
||||
category = list(
|
||||
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_TOOLS_MINING
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_CARGO
|
||||
|
||||
/datum/design_techweb/shovel
|
||||
name = "Shovel"
|
||||
id = "shovel"
|
||||
materials = list(MAT_STEEL = 50)
|
||||
build_path = /obj/item/shovel
|
||||
build_type = PROTOLATHE | AUTOLATHE
|
||||
category = list(
|
||||
RND_CATEGORY_TOOLS
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_CARGO
|
||||
|
||||
/datum/design_techweb/iceaxe
|
||||
name = "Ice Axe"
|
||||
id = "iceaxe"
|
||||
materials = list(MAT_STEEL = 12000)
|
||||
build_path = /obj/item/ice_pick
|
||||
build_type = PROTOLATHE | AUTOLATHE
|
||||
category = list(
|
||||
RND_CATEGORY_TOOLS
|
||||
)
|
||||
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_CARGO
|
||||
|
||||
@@ -107,3 +107,29 @@
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_4_POINTS)
|
||||
announce_channels = list(CHANNEL_SUPPLY)
|
||||
|
||||
/datum/techweb_node/mining_lights
|
||||
id = TECHWEB_NODE_MINELIGHTS
|
||||
display_name = "Mine Lighting"
|
||||
description = "Development of lights and other tools for illuminating the underground."
|
||||
prereq_ids = list(TECHWEB_NODE_MATERIAL_PROC)
|
||||
design_ids = list(
|
||||
"marker_beacon",
|
||||
"trailblazer_red",
|
||||
"trailblazer_yellow",
|
||||
"trailblazer_blue",
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
||||
announce_channels = list(CHANNEL_SUPPLY)
|
||||
|
||||
/datum/techweb_node/snow_clearing
|
||||
id = TECHWEB_NODE_DEBRISREMOVAL
|
||||
display_name = "Debris Removal"
|
||||
description = "Development of tools for removing rocks, snow, ice, and many other forms of loose debris."
|
||||
prereq_ids = list(TECHWEB_NODE_MATERIAL_PROC)
|
||||
design_ids = list(
|
||||
"shovel",
|
||||
"iceaxe",
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
||||
announce_channels = list(CHANNEL_SUPPLY)
|
||||
|
||||
Reference in New Issue
Block a user