-
Notifications
You must be signed in to change notification settings - Fork 4
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 gas generator and heat generator
- Loading branch information
Showing
3 changed files
with
122 additions
and
2 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,59 @@ | ||
--- | ||
telem: | ||
adapter: | ||
id: 'gasGenerator' | ||
name: 'Gas Generator' | ||
categories: '{ "basic", "advanced", "fuel", "energy" }' | ||
requiresMekGen: true | ||
--- | ||
|
||
<script setup> | ||
import { data as metrics } from './common/metrics.data.ts' | ||
</script> | ||
|
||
# Mekanism Gas Generator Input <RepoLink path="lib/input/mekanism/GasGeneratorInputAdapter.lua" /> | ||
|
||
<!--@include: ./common/preamble.md --> | ||
|
||
### Basic | ||
|
||
<MetricTable | ||
prefix="mekgasgen:" | ||
:metrics="[ | ||
{ name: 'fuel_filled_percentage', value: '0.0 - 1.0' }, | ||
{ name: 'burn_rate', value: '0.0 - inf', unit: 'B/t' }, | ||
{ name: 'fuel_item_count', value: '0 - inf', unit: 'item' }, | ||
...metrics.genericMachine.basic, | ||
...metrics.generator.basic | ||
]" | ||
/> | ||
|
||
### Advanced | ||
|
||
<MetricTable | ||
prefix="mekgasgen:" | ||
:metrics="[ | ||
...metrics.genericMachine.advanced | ||
]" | ||
/> | ||
|
||
### Fuel | ||
|
||
<MetricTable | ||
prefix="mekgasgen:" | ||
:metrics="[ | ||
{ name: 'fuel', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'fuel_capacity', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'fuel_needed', value: '0.0 - inf', unit: 'B' } | ||
]" | ||
/> | ||
|
||
### Energy | ||
|
||
<MetricTable | ||
prefix="mekgasgen:" | ||
:metrics="[ | ||
...metrics.genericMachine.energy, | ||
...metrics.generator.energy | ||
]" | ||
/> |
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,61 @@ | ||
--- | ||
telem: | ||
adapter: | ||
id: 'heatGenerator' | ||
name: 'Heat Generator' | ||
categories: '{ "basic", "advanced", "fuel", "energy" }' | ||
requiresMekGen: true | ||
--- | ||
|
||
<script setup> | ||
import { data as metrics } from './common/metrics.data.ts' | ||
</script> | ||
|
||
# Mekanism Heat Generator Input <RepoLink path="lib/input/mekanism/HeatGeneratorInputAdapter.lua" /> | ||
|
||
<!--@include: ./common/preamble.md --> | ||
|
||
### Basic | ||
|
||
<MetricTable | ||
prefix="mekheatgen:" | ||
:metrics="[ | ||
{ name: 'fuel_item_count', value: '0 - inf', unit: 'item' }, | ||
{ name: 'lava_filled_percentage', value: '0.0 - 1.0' }, | ||
{ name: 'temperature', value: '0.0 - inf', unit: 'K' }, | ||
...metrics.genericMachine.basic, | ||
...metrics.generator.basic | ||
]" | ||
/> | ||
|
||
### Advanced | ||
|
||
<MetricTable | ||
prefix="mekheatgen:" | ||
:metrics="[ | ||
{ name: 'transfer_loss', value: '0.0 - inf' }, | ||
{ name: 'environmental_loss', value: '0.0 - inf' }, | ||
...metrics.genericMachine.advanced | ||
]" | ||
/> | ||
|
||
### Fuel | ||
|
||
<MetricTable | ||
prefix="mekheatgen:" | ||
:metrics="[ | ||
{ name: 'lava', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'lava_capacity', value: '0.0 - inf', unit: 'B' }, | ||
{ name: 'lava_needed', value: '0.0 - inf', unit: 'B' } | ||
]" | ||
/> | ||
|
||
### Energy | ||
|
||
<MetricTable | ||
prefix="mekheatgen:" | ||
:metrics="[ | ||
...metrics.genericMachine.energy, | ||
...metrics.generator.energy | ||
]" | ||
/> |