mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Protolathe and CI build procs moved to them from RD console. Protolathe and CI now have a build queue. Designs take varying time to build. P and CI material storage is now a list instead of a set of vars. origin_tech is now a list. All sheets now contain exactly 2000 units of matter. In design datum, chemicals and materials are two separate lists. Designs are now sorted. The method is kinda hacky but flexible. They have a var, sort_string. Designs are sorted alphabetically using it. Circuits how show whether they build a machine or a computer in CI menu. Adds item construction, for now protolathe is used.
32 lines
2.4 KiB
Plaintext
32 lines
2.4 KiB
Plaintext
/*
|
|
Research and Development System. (Designed specifically for the /tg/station 13 (Space Station 13) open source project)
|
|
|
|
///////////////Overview///////////////////
|
|
This system is a "tech tree" research and development system designed for SS13. It allows a "researcher" job (this document assumes
|
|
the "scientist" job is given this role) the tools necessary to research new and better technologies. In general, the system works
|
|
by breaking existing technology and using what you learn from to advance your knowledge of SCIENCE! As your knowledge progresses,
|
|
you can build newer (and better?) devices (which you can also, eventually, deconstruct to advance your knowledge).
|
|
|
|
A brief overview is below. For more details, see the related files.
|
|
|
|
////////////Game Use/////////////
|
|
The major research and development is performed using a combination of four machines:
|
|
- R&D Console: A computer console that allows you to manipulate the other devices that are linked to it and view/manipulate the
|
|
technologies you have researched so far.
|
|
- Protolathe: Used to make new hand-held devices and parts for larger devices. All metals and reagents as raw materials.
|
|
- Destructive Analyzer: You can put hand-held objects into it and it'll analyze them for technological advancements but it destroys
|
|
them in the process. Destroyed items will send their raw materials to a linked Protolathe (if any)
|
|
- Circuit Imprinter: Similar to the Protolathe, it allows for the construction of circuit boards. Uses glass and acid as the raw
|
|
materials.
|
|
|
|
While researching you are dealing with two different types of information: Technology Paths and Device Designs. Technology Paths
|
|
are the "Tech Trees" of the game. You start out with a number of them at the game start and they are improved by using the
|
|
Destructive Analyzer. By themselves, they don't do a whole lot. However, they unlock Device Designs. This is the information used
|
|
by the circuit imprinter and the protolathe to produce objects. It also tracks the current reliability of that particular design.
|
|
|
|
//EXISTING TECH
|
|
Each tech path should have at LEAST one item at every level (levels 1 - 20). This is to allow for a more fluid progression of the
|
|
researching. Existing tech (ie, anything you can find on the station or get from the quartermaster) shouldn't go higher then
|
|
level 5 or 7. Everything past that should be stuff you research.
|
|
|
|
*/ |