Skip to content

Commit

Permalink
📦 add docs for metallurgic infuser
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberbit committed Nov 28, 2024
1 parent c5329fc commit 1cbebf7
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 @@ -105,7 +105,7 @@ export default defineConfig({
{ text: 'Laser Tractor Beam', link: '/reference/input/mekanism/LaserTractorBeam' },
{ 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: 'Metallurgic Infuser', link: '/reference/input/mekanism/MetallurgicInfuser' },
// { text: 'Nutritional Liquifier', link: '/reference/input/mekanism/NutritionalLiquifier' },
// { text: 'Oredictionificator', link: '/reference/input/mekanism/Oredictionificator' },
// { text: 'Osmium Compressor', link: '/reference/input/mekanism/OsmiumCompressor' },
Expand Down
67 changes: 67 additions & 0 deletions docs/reference/input/mekanism/MetallurgicInfuser.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
---
telem:
adapter:
id: 'metallurgicInfuser'
name: 'Metallurgic Infuser'
categories: '{ "basic", "advanced", "input", "energy", "recipe" }'
---

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

# Mekanism Metallurgic Infuser Input <RepoLink path="lib/input/mekanism/MetallurgicInfuserInputAdapter.lua" />

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

### Basic

<MetricTable
prefix="mekmetalinfuse:"
:metrics="[
{ name: 'input_count', value: '0 - inf', unit: 'item' },
{ name: 'infuse_item_count', value: '0 - inf', unit: 'item' },
{ name: 'infuse_filled_percentage', value: '0.0 - 1.0' },
{ name: 'output_count', value: '0 - inf', unit: 'item' },
{ name: 'energy_usage', value: '0.0 - inf', unit: 'FE/t' },
...metrics.genericMachine.basic
]"
/>

### Advanced

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

### Input

<MetricTable
prefix="mekmetalinfuse:"
:metrics="[
{ name: 'infuse', value: '0.0 - inf', unit: 'B' },
{ name: 'infuse_capacity', value: '0.0 - inf', unit: 'B' },
{ name: 'infuse_needed', value: '0.0 - inf', unit: 'B' }
]"
/>

### Energy

<MetricTable
prefix="mekmetalinfuse:"
:metrics="[
...metrics.genericMachine.energy
]"
/>

### Recipe

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

0 comments on commit 1cbebf7

Please # to comment.