Skip to content

Commit

Permalink
📦 add docs for nutritional liquifier
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberbit committed Nov 30, 2024
1 parent 1cbebf7 commit 0a1e258
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default defineConfig({
{ text: 'Logistical Sorter', link: '/reference/input/mekanism/LogisticalSorter' },
{ text: 'Mechanical Pipe', link: '/reference/input/mekanism/MechanicalPipe' },
{ text: 'Metallurgic Infuser', link: '/reference/input/mekanism/MetallurgicInfuser' },
// { text: 'Nutritional Liquifier', link: '/reference/input/mekanism/NutritionalLiquifier' },
{ text: 'Nutritional Liquifier', link: '/reference/input/mekanism/NutritionalLiquifier' },
// { text: 'Oredictionificator', link: '/reference/input/mekanism/Oredictionificator' },
// { text: 'Osmium Compressor', link: '/reference/input/mekanism/OsmiumCompressor' },
// { text: 'Painting Machine', link: '/reference/input/mekanism/PaintingMachine' },
Expand Down
67 changes: 67 additions & 0 deletions docs/reference/input/mekanism/NutritionalLiquifier.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
---
telem:
adapter:
id: 'nutritionalLiquifier'
name: 'Nutritional Liquifier'
categories: '{ "basic", "advanced", "output", "energy", "recipe" }'
---

<script setup>
import { data as metrics } from './common/metrics.data.ts'
</script>

# Mekanism Nutritional Liquifier Input <RepoLink path="lib/input/mekanism/NutritionalLiquifierInputAdapter.lua" />

<!--@include: ./common/preamble.md -->

### Basic

<MetricTable
prefix="mekliquifier:"
:metrics="[
{ name: 'input_count', value: '0 - inf', unit: 'item' },
{ name: 'output_filled_percentage', value: '0.0 - 1.0' },
{ name: 'container_fill_item_count', value: '0 - inf', unit: 'item' },
{ name: 'output_item_count', value: '0 - inf', unit: 'item' },
{ name: 'energy_usage', value: '0.0 - inf', unit: 'FE/t' },
...metrics.genericMachine.basic
]"
/>

### Advanced

<MetricTable
prefix="mekliquifier:"
:metrics="[
...metrics.genericMachine.advanced
]"
/>

### Output

<MetricTable
prefix="mekliquifier:"
: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="mekliquifier:"
:metrics="[
...metrics.genericMachine.energy
]"
/>

### Recipe

<MetricTable
prefix="mekliquifier:"
:metrics="[
...metrics.recipeProgress.recipe
]"
/>

0 comments on commit 0a1e258

Please sign in to comment.