mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 10:11:09 +00:00
## About The Pull Request Adds a unit test that checks that all designs are accessible through some source, be it techweb, disks, or innate designs. Certain designs, like pocket extinguishers, entertainment screens, etc, that have been present in autolathes but not in the techweb despite having PROTOLATHE flag assigned have been put into protolathes (where it made sense, otherwise the flag was removed). An important change is that restaurant portals are now printable, and thus can be constructed and deconstructed. Indestructible portals have been a major gripe of mine for a while, and I don't see a solid reason for keeping them indestructible if they can easily be printed from the service protolathe. Closes #90212 ## Why It's Good For The Game Initial argument for keeping portals unbreakable was to prevent people from griefing the chef/bartender, but by that logic we can make most machinery unbreakable too. I don't think that having an unbreakable portal is good if its locking us out from allowing chefs/bartenders to reorder or even outright reposition their lunchroom/bar. ## Changelog 🆑 balance: Restaurant portals can now be printed, constructed and deconstructed. They're also no longer completely invulnerable. /🆑
136 lines
5.1 KiB
Plaintext
136 lines
5.1 KiB
Plaintext
//Nodes that are found inside Bepis Disks.
|
|
|
|
/datum/techweb_node/light_apps
|
|
id = TECHWEB_NODE_LIGHT_APPS
|
|
display_name = "Illumination Applications"
|
|
description = "Applications of lighting and vision technology not originally thought to be commercially viable."
|
|
design_ids = list(
|
|
"bright_helmet",
|
|
"rld_mini",
|
|
"photon_cannon",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_COMMON)
|
|
|
|
/datum/techweb_node/extreme_office
|
|
id = TECHWEB_NODE_EXTREME_OFFICE
|
|
display_name = "Advanced Office Applications"
|
|
description = "Some of our smartest lab guys got together on a Friday and improved our office efficiency by 350%. Here's how."
|
|
design_ids = list(
|
|
"mauna_mug",
|
|
"rolling_table",
|
|
"plasticducky",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_COMMON)
|
|
|
|
/datum/techweb_node/spec_eng
|
|
id = TECHWEB_NODE_SPEC_ENG
|
|
display_name = "Specialized Engineering"
|
|
description = "Conventional wisdom has deemed these engineering products 'technically' safe, but far too dangerous to traditionally condone."
|
|
design_ids = list(
|
|
"eng_gloves",
|
|
"lava_rods",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_ENGINEERING)
|
|
|
|
/datum/techweb_node/aus_security
|
|
id = TECHWEB_NODE_AUS_SECURITY
|
|
display_name = "Australicus Security Protocols"
|
|
description = "It is said that security in the Australicus sector is tight, so we took some pointers from their equipment. Thankfully, our sector lacks any signs of these, 'dropbears'."
|
|
design_ids = list(
|
|
"pin_explorer",
|
|
"stun_boomerang",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_SECURITY)
|
|
|
|
/datum/techweb_node/interrogation
|
|
id = TECHWEB_NODE_INTERROGATION
|
|
display_name = "Enhanced Interrogation Technology"
|
|
description = "By cross-referencing several declassified documents from past dictatorial regimes, we were able to develop an incredibly effective interrogation device. \
|
|
Ethical concerns about loss of free will do not apply to criminals, according to galactic law."
|
|
design_ids = list(
|
|
"hypnochair",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_SECURITY)
|
|
|
|
/datum/techweb_node/sticky_advanced
|
|
id = TECHWEB_NODE_STICKY_ADVANCED
|
|
display_name = "Advanced Sticky Technology"
|
|
description = "Taking a good joke too far? Nonsense!"
|
|
design_ids = list(
|
|
"pointy_tape",
|
|
"super_sticky_tape",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_COMMON)
|
|
|
|
/datum/techweb_node/tackle_advanced
|
|
id = TECHWEB_NODE_TACKLE_ADVANCED
|
|
display_name = "Advanced Grapple Technology"
|
|
description = "Nanotrasen would like to remind its researching staff that it is never acceptable to \"glomp\" your coworkers, and further \"scientific trials\" on the subject \
|
|
will no longer be accepted in its academic journals."
|
|
design_ids = list(
|
|
"tackle_dolphin",
|
|
"tackle_rocket",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_SECURITY)
|
|
|
|
/datum/techweb_node/mod_experimental
|
|
id = TECHWEB_NODE_MOD_EXPERIMENTAL
|
|
display_name = "Experimental Modular Suits"
|
|
description = "Applications of experimentality when creating MODsuits have created these..."
|
|
design_ids = list(
|
|
"mod_disposal",
|
|
"mod_joint_torsion",
|
|
"mod_recycler",
|
|
"mod_shooting",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_COMMON)
|
|
|
|
/datum/techweb_node/posisphere
|
|
id = TECHWEB_NODE_POSITRONIC_SPHERE
|
|
display_name = "Experimental Spherical Positronic Brain"
|
|
description = "Recent developments on cost-cutting measures have allowed us to cut positronic brain cubes into twice-as-cheap spheres. Unfortunately, it also allows them to move around the lab via rolling maneuvers."
|
|
design_ids = list(
|
|
"posisphere",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_SCIENCE)
|
|
|
|
/datum/techweb_node/donk_shell
|
|
id = TECHWEB_NODE_DONK_PRODUCTS
|
|
display_name = "Donk Co. Failed Products Schematics"
|
|
description = "We don't want to know why you're filling up your databanks with known failed products from an enemy corporation. That's your choice. I'm just saying, don't come crying to us \
|
|
when it turns out you've downloaded some kind of horrible donk-pocket related malware that steals your Starscape password. Those bastards over at Donk Co. WILL delete your character."
|
|
design_ids = list(
|
|
"donkshell",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
hidden = TRUE
|
|
experimental = TRUE
|
|
announce_channels = list(RADIO_CHANNEL_SECURITY)
|