Skip to content

Commit

Permalink
📦 add docs for logisital sorter and mechanical pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberbit committed Nov 28, 2024
1 parent d89e220 commit c5329fc
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ export default defineConfig({
{ text: 'Laser', link: '/reference/input/mekanism/Laser' },
{ text: 'Laser Amplifier', link: '/reference/input/mekanism/LaserAmplifier' },
{ 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: '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: 'Oredictionificator', link: '/reference/input/mekanism/Oredictionificator' },
Expand Down
24 changes: 24 additions & 0 deletions docs/reference/input/mekanism/LogisticalSorter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
telem:
adapter:
id: 'logisticalSorter'
name: 'Logistical Sorter'
categories: '{ "basic" }'
---

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

# Mekanism Logistical Sorter Input <RepoLink path="lib/input/mekanism/LogisticalSorterInputAdapter.lua" />

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

### Basic

<MetricTable
prefix="meklogsorter:"
:metrics="[
{ name: 'comparator_level', value: '0 - 15' },
]"
/>
35 changes: 35 additions & 0 deletions docs/reference/input/mekanism/MechanicalPipe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
telem:
adapter:
id: 'mechanicalPipe'
name: 'Mechanical Pipe'
categories: '{ "basic", "transfer" }'
---

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

# Mekanism Mechanical Pipe Input <RepoLink path="lib/input/mekanism/MechanicalPipeInputAdapter.lua" />

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

### Basic

<MetricTable
prefix="mekpipe:"
:metrics="[
{ name: 'filled_percentage', value: '0.0 - 1.0' },
]"
/>

### Transfer

<MetricTable
prefix="mekpipe:"
: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' },
]"
/>

0 comments on commit c5329fc

Please sign in to comment.