-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📦 add docs for sawmill, reaction chamber, pressurized tube, and purif…
…ication chamber
- Loading branch information
Showing
5 changed files
with
243 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
telem: | ||
adapter: | ||
id: 'precisionSawmill' | ||
name: 'Precision Sawmill' | ||
categories: '{ "basic", "advanced", "energy", "recipe" }' | ||
--- | ||
|
||
<script setup> | ||
import { data as metrics } from './common/metrics.data.ts' | ||
</script> | ||
|
||
# Mekanism Precision Sawmill Input <RepoLink path="lib/input/mekanism/PrecisionSawmillInputAdapter.lua" /> | ||
|
||
<!--@include: ./common/preamble.md --> | ||
|
||
### Basic | ||
|
||
<MetricTable | ||
prefix="meksaw:" | ||
:metrics="[ | ||
{ name: 'input_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'output_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'output_secondary_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'energy_usage', value: '0.0 - inf', unit: 'FE/t' }, | ||
...metrics.genericMachine.basic | ||
]" | ||
/> | ||
|
||
### Advanced | ||
|
||
<MetricTable | ||
prefix="meksaw:" | ||
:metrics="[ | ||
...metrics.genericMachine.advanced | ||
]" | ||
/> | ||
|
||
### Energy | ||
|
||
<MetricTable | ||
prefix="meksaw:" | ||
:metrics="[ | ||
...metrics.genericMachine.energy | ||
]" | ||
/> | ||
|
||
### Recipe | ||
|
||
<MetricTable | ||
prefix="meksaw:" | ||
:metrics="[ | ||
...metrics.recipeProgress.recipe, | ||
]" | ||
/> |
82 changes: 82 additions & 0 deletions
82
docs/reference/input/mekanism/PressurizedReactionChamber.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
--- | ||
telem: | ||
adapter: | ||
id: 'reactionChamber' | ||
name: 'Pressurized Reaction Chamber' | ||
categories: '{ "basic", "advanced", "input", "output", "energy", "recipe" }' | ||
--- | ||
|
||
<script setup> | ||
import { data as metrics } from './common/metrics.data.ts' | ||
</script> | ||
|
||
# Mekanism Pressurized Reaction Chamber Input <RepoLink path="lib/input/mekanism/PressurizedReactionChamberInputAdapter.lua" /> | ||
|
||
<!--@include: ./common/preamble.md --> | ||
|
||
### Basic | ||
|
||
<MetricTable | ||
prefix="mekreaction:" | ||
:metrics="[ | ||
{ name: 'input_fluid_filled_percentage', value: '0.0 - 1.0' }, | ||
{ name: 'input_gas_filled_percentage', value: '0.0 - 1.0' }, | ||
{ name: 'input_item_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'output_item_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'output_gas_filled_percentage', value: '0.0 - 1.0' }, | ||
{ name: 'energy_usage', value: '0.0 - inf', unit: 'FE/t' }, | ||
...metrics.genericMachine.basic | ||
]" | ||
/> | ||
|
||
### Advanced | ||
|
||
<MetricTable | ||
prefix="mekreaction:" | ||
:metrics="[ | ||
...metrics.genericMachine.advanced | ||
]" | ||
/> | ||
|
||
### Input | ||
|
||
<MetricTable | ||
prefix="mekreaction:" | ||
:metrics="[ | ||
{ name: 'input_fluid', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'input_fluid_capacity', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'input_fluid_needed', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'input_gas', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'input_gas_capacity', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'input_gas_needed', value: '0.0 - inf', unit: 'B' } | ||
]" | ||
/> | ||
|
||
### Output | ||
|
||
<MetricTable | ||
prefix="mekreaction:" | ||
:metrics="[ | ||
{ name: 'output', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'output_capacity', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'output_needed', value: '0.0 - inf', unit: 'B' } | ||
]" | ||
/> | ||
|
||
### Energy | ||
|
||
<MetricTable | ||
prefix="mekreaction:" | ||
:metrics="[ | ||
...metrics.genericMachine.energy | ||
]" | ||
/> | ||
|
||
### Recipe | ||
|
||
<MetricTable | ||
prefix="mekreaction:" | ||
:metrics="[ | ||
...metrics.recipeProgress.recipe, | ||
]" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
telem: | ||
adapter: | ||
id: 'pressurizedTube' | ||
name: 'Pressurized Tube' | ||
categories: '{ "basic", "transfer" }' | ||
--- | ||
|
||
<script setup> | ||
import { data as metrics } from './common/metrics.data.ts' | ||
</script> | ||
|
||
# Mekanism Pressurized Tube Input <RepoLink path="lib/input/mekanism/PressurizedTubeInputAdapter.lua" /> | ||
|
||
<!--@include: ./common/preamble.md --> | ||
|
||
### Basic | ||
|
||
<MetricTable | ||
prefix="mektube:" | ||
:metrics="[ | ||
{ name: 'filled_percentage', value: '0.0 - 1.0' }, | ||
]" | ||
/> | ||
|
||
### Transfer | ||
|
||
<MetricTable | ||
prefix="mektube:" | ||
:metrics="[ | ||
{ name: 'buffer', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'capacity', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'needed', value: '0.0 - inf', unit: 'B' }, | ||
]" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
telem: | ||
adapter: | ||
id: 'purificationChamber' | ||
name: 'Purification Chamber' | ||
categories: '{ "basic", "advanced", "input", "energy", "recipe" }' | ||
--- | ||
|
||
<script setup> | ||
import { data as metrics } from './common/metrics.data.ts' | ||
</script> | ||
|
||
# Mekanism Purification Chamber Input <RepoLink path="lib/input/mekanism/PurificationChamberInputAdapter.lua" /> | ||
|
||
<!--@include: ./common/preamble.md --> | ||
|
||
### Basic | ||
|
||
<MetricTable | ||
prefix="mekpurify:" | ||
:metrics="[ | ||
{ name: 'chemical_filled_percentage', value: '0.0 - 1.0' }, | ||
{ name: 'input_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'chemical_item_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'output_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'energy_usage', value: '0.0 - inf', unit: 'FE/t' }, | ||
...metrics.genericMachine.basic | ||
]" | ||
/> | ||
|
||
### Advanced | ||
|
||
<MetricTable | ||
prefix="mekpurify:" | ||
:metrics="[ | ||
...metrics.genericMachine.advanced | ||
]" | ||
/> | ||
|
||
### Input | ||
|
||
<MetricTable | ||
prefix="mekpurify:" | ||
:metrics="[ | ||
{ name: 'chemical', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'chemical_capacity', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'chemical_needed', value: '0.0 - inf', unit: 'B' } | ||
]" | ||
/> | ||
|
||
### Energy | ||
|
||
<MetricTable | ||
prefix="mekpurify:" | ||
:metrics="[ | ||
...metrics.genericMachine.energy | ||
]" | ||
/> | ||
|
||
### Recipe | ||
|
||
<MetricTable | ||
prefix="mekpurify:" | ||
:metrics="[ | ||
...metrics.recipeProgress.recipe, | ||
]" | ||
/> |