Skip to content

Commit

Permalink
removes the B.E.P.I.S. (shiptest-ss13#3414)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request
Removes the BEPIS and related tech nodes. 
Removes BEPIS disks from salvage and maps (just the tranq as of now)
<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

## Why It's Good For The Game
BEPIS is slated to be removed in the cargo rework doc, here it is.
<!-- Please add a short description of why you think these changes would
benefit the game. If you can't justify it in words, it might not be
worth adding. -->

## Changelog

:cl:
del: B.E.P.I.S. and related tech nodes.
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
Thera-Pissed authored and MysticalFaceLesS committed Sep 28, 2024
1 parent d63e2f9 commit 8546147
Show file tree
Hide file tree
Showing 13 changed files with 1 addition and 567 deletions.
4 changes: 0 additions & 4 deletions _maps/shuttles/independent/independent_tranquility.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -6540,10 +6540,6 @@
/obj/effect/turf_decal/techfloor{
dir = 1
},
/obj/item/disk/tech_disk/major{
pixel_x = -7;
pixel_y = -5
},
/obj/item/disk/tech_disk{
pixel_x = -3;
pixel_y = -2
Expand Down
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 @@ -1114,17 +1114,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
Loading

0 comments on commit 8546147

Please sign in to comment.