Skip to content

Commit

Permalink
first bombing run
Browse files Browse the repository at this point in the history
  • Loading branch information
Thera-Pissed committed Sep 23, 2024
1 parent b937561 commit f1de754
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 563 deletions.
3 changes: 0 additions & 3 deletions code/controllers/subsystem/research.dm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ SUBSYSTEM_DEF(research)
var/list/techweb_categories = list() //category name = list(node.id = TRUE)
var/list/techweb_boost_items = list() //associative double-layer path = list(id = list(point_type = point_discount))
var/list/techweb_nodes_hidden = list() //Node ids that should be hidden by default.
var/list/techweb_nodes_experimental = list() //Node ids that are exclusive to the BEPIS.
var/list/techweb_point_items = list(
//path = list(point type = value)
/obj/item/assembly/signaler/anomaly = list(TECHWEB_POINT_TYPE_GENERIC = 10000)
Expand Down Expand Up @@ -217,8 +216,6 @@ SUBSYSTEM_DEF(research)
D.unlocked_by += node.id
if(node.hidden)
techweb_nodes_hidden[node.id] = TRUE
if(node.experimental)
techweb_nodes_experimental[node.id] = TRUE
CHECK_TICK
generate_techweb_unlock_linking()

Expand Down
11 changes: 0 additions & 11 deletions code/game/objects/items/circuitboards/machine_circuitboards.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1111,17 +1111,6 @@
/obj/item/stack/sheet/glass = 1)
def_components = list(/obj/item/stack/ore/bluespace_crystal = /obj/item/stack/ore/bluespace_crystal/artificial)

/obj/item/circuitboard/machine/bepis
name = "BEPIS Chamber (Machine Board)"
icon_state = "science"
build_path = /obj/machinery/rnd/bepis
req_components = list(
/obj/item/stack/cable_coil = 5,
/obj/item/stock_parts/capacitor = 1,
/obj/item/stock_parts/manipulator = 1,
/obj/item/stock_parts/micro_laser = 1,
/obj/item/stock_parts/scanning_module = 1)

/obj/item/circuitboard/machine/bluespace_miner
name = "Bluespace Miner (Machine Board)"
build_path = /obj/machinery/power/bluespace_miner
Expand Down
3 changes: 0 additions & 3 deletions code/game/objects/structures/salvaging.dm
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@
/obj/item/research_notes/loot/medium = 20,
/obj/item/research_notes/loot/big = 5, //you have a chance at summoning god damn ripley lobster from this thing, might as well

/obj/item/disk/tech_disk/major = 3,
/obj/item/disk/tech_disk = 20,
/obj/item/disk/data = 20,
/obj/item/disk/holodisk = 20,
Expand Down Expand Up @@ -303,7 +302,6 @@
/obj/item/research_notes/loot/medium = 20,
/obj/item/research_notes/loot/big = 5,

/obj/item/disk/tech_disk/major = 3,
/obj/item/disk/tech_disk = 20,
/obj/item/disk/data = 20,
/obj/item/disk/holodisk = 20,
Expand Down Expand Up @@ -591,7 +589,6 @@
/obj/effect/spawner/lootdrop/random_machine_circuit_common
loot = list(
/obj/item/circuitboard/machine/autolathe = 5,
/obj/item/circuitboard/machine/bepis = 5,
/obj/item/circuitboard/machine/biogenerator = 5,
/obj/item/circuitboard/machine/cell_charger = 5,
/obj/item/circuitboard/machine/chem_heater = 5,
Expand Down
9 changes: 0 additions & 9 deletions code/modules/autowiki/pages/techweb.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
if (!node.show_on_wiki)
continue

if (!valid_node(node))
continue

output += "\n\n" + include_template("Autowiki/TechwebEntry", list(
"name" = escape_value(node.display_name),
"description" = escape_value(node.description),
Expand All @@ -21,9 +18,6 @@

return output

/datum/autowiki/techweb/proc/valid_node(datum/techweb_node/node)
return !node.experimental

/datum/autowiki/techweb/proc/generate_designs(list/design_ids)
var/output = ""

Expand All @@ -50,9 +44,6 @@
/datum/autowiki/techweb/experimental
page = "Template:Autowiki/Content/Techweb/Experimental"

/datum/autowiki/techweb/experimental/valid_node(datum/techweb_node/node)
return node.experimental

/proc/sort_research_nodes(node_id_a, node_id_b)
var/datum/techweb_node/node_a = SSresearch.techweb_nodes[node_id_a]
var/datum/techweb_node/node_b = SSresearch.techweb_nodes[node_id_b]
Expand Down
275 changes: 0 additions & 275 deletions code/modules/research/bepis.dm

This file was deleted.

8 changes: 0 additions & 8 deletions code/modules/research/designs/machine_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,6 @@
category = list("Research Machinery")
departmental_flags = DEPARTMENTAL_FLAG_SCIENCE

/datum/design/board/bepis
name = "Machine Design (B.E.P.I.S. Board)"
desc = "The circuit board for a B.E.P.I.S."
id = "bepis"
build_path = /obj/item/circuitboard/machine/bepis
category = list("Research Machinery")
departmental_flags = DEPARTMENTAL_FLAG_SCIENCE | DEPARTMENTAL_FLAG_CARGO

/datum/design/board/rdserver
name = "Machine Design (R&D Server Board)"
desc = "The circuit board for an R&D Server."
Expand Down
11 changes: 0 additions & 11 deletions code/modules/research/research_disk.dm
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,6 @@
. = ..()
stored_research = new /datum/techweb/admin

/obj/item/disk/tech_disk/major
name = "Reformatted technology disk"
desc = "A disk containing a new, completed tech from the B.E.P.I.S. Upload the disk to an R&D Console to redeem the tech."
color = "#FFBAFF"
illustration = "bepis"
custom_materials = list(/datum/material/iron=300, /datum/material/glass=100)

/obj/item/disk/tech_disk/major/Initialize()
. = ..()
stored_research = new /datum/techweb/bepis

/obj/item/research_notes
name = "research notes"
desc = "Valuable scientific data. Use it in a research console to scan it."
Expand Down
Loading

0 comments on commit f1de754

Please sign in to comment.