From a834a0c1afddad46e4330b9faa96fd8cf9ce6dcb Mon Sep 17 00:00:00 2001 From: Dangrainage <99558179+Dangrainage@users.noreply.github.com> Date: Wed, 31 Jul 2024 22:44:30 +0200 Subject: [PATCH] Added the actual docs, removing the need for linking to original page --- docs/alchemistry.md | 31 ++++++ docs/aoa3.md | 13 +++ docs/apotheosis.md | 19 ++++ docs/appliedenergistics2.md | 13 +++ docs/ars_nouveau.md | 19 ++++ docs/astralsorcery.md | 25 +++++ docs/atum.md | 19 ++++ docs/betterendforge.md | 19 ++++ docs/boss_tools.md | 13 +++ docs/boss_tools_giselle_addon.md | 13 +++ docs/botania.md | 43 ++++++++ docs/botanypots.md | 19 ++++ docs/createaddition.md | 13 +++ docs/divinerpg.md | 13 +++ docs/draconicevolution.md | 7 ++ docs/eidolon.md | 7 ++ docs/elementalcraft.md | 49 ++++++++++ docs/evilcraft.md | 13 +++ docs/excompressum.md | 19 ++++ docs/exnihilosequentia.md | 55 +++++++++++ docs/farmersdelight.md | 13 +++ docs/ftbdripper.md | 7 ++ docs/ftbic.md | 28 ++++++ docs/immersivepetroleum.md | 19 ++++ docs/industrialforegoing.md | 25 +++++ docs/integrateddynamics.md | 25 +++++ docs/mekanism.md | 163 +++++++++++++++++++++++++++++++ docs/mysticalagriculture.md | 19 ++++ docs/mythicbotany.md | 7 ++ docs/naturesaura.md | 25 +++++ docs/occultism.md | 25 +++++ docs/pedestals.md | 31 ++++++ docs/pneumaticcraft.md | 61 ++++++++++++ docs/powah.md | 7 ++ docs/psi.md | 7 ++ docs/silentgear.md | 13 +++ docs/silents_mechanisms.md | 49 ++++++++++ docs/tconstruct.md | 55 +++++++++++ 38 files changed, 1001 insertions(+) create mode 100644 docs/alchemistry.md create mode 100644 docs/aoa3.md create mode 100644 docs/apotheosis.md create mode 100644 docs/appliedenergistics2.md create mode 100644 docs/ars_nouveau.md create mode 100644 docs/astralsorcery.md create mode 100644 docs/atum.md create mode 100644 docs/betterendforge.md create mode 100644 docs/boss_tools.md create mode 100644 docs/boss_tools_giselle_addon.md create mode 100644 docs/botania.md create mode 100644 docs/botanypots.md create mode 100644 docs/createaddition.md create mode 100644 docs/divinerpg.md create mode 100644 docs/draconicevolution.md create mode 100644 docs/eidolon.md create mode 100644 docs/elementalcraft.md create mode 100644 docs/evilcraft.md create mode 100644 docs/excompressum.md create mode 100644 docs/exnihilosequentia.md create mode 100644 docs/farmersdelight.md create mode 100644 docs/ftbdripper.md create mode 100644 docs/ftbic.md create mode 100644 docs/immersivepetroleum.md create mode 100644 docs/industrialforegoing.md create mode 100644 docs/integrateddynamics.md create mode 100644 docs/mekanism.md create mode 100644 docs/mysticalagriculture.md create mode 100644 docs/mythicbotany.md create mode 100644 docs/naturesaura.md create mode 100644 docs/occultism.md create mode 100644 docs/pedestals.md create mode 100644 docs/pneumaticcraft.md create mode 100644 docs/powah.md create mode 100644 docs/psi.md create mode 100644 docs/silentgear.md create mode 100644 docs/silents_mechanisms.md create mode 100644 docs/tconstruct.md diff --git a/docs/alchemistry.md b/docs/alchemistry.md new file mode 100644 index 0000000..e29b6b7 --- /dev/null +++ b/docs/alchemistry.md @@ -0,0 +1,31 @@ +### Alchemistry + +#### Atomizer + +```js +global.mrt.alchemistry.atomizer(event, , [, ], ) +``` + +#### (Chemical) Combiner + +```js +global.mrt.alchemistry.combiner(event, , [], ) +``` + +#### (Chemical) Dissolver + +```js +global.mrt.alchemistry.dissolver(event, [[[Output items], ], ...], , , , ) +``` + +#### Evaporator + +```js +global.mrt.alchemistry.evaporator(event, , [, ], ) +``` + +#### Liquifier + +```js +global.mrt.alchemistry.liquifier(event, Fluid.of(, ), , ) +``` \ No newline at end of file diff --git a/docs/aoa3.md b/docs/aoa3.md new file mode 100644 index 0000000..1552473 --- /dev/null +++ b/docs/aoa3.md @@ -0,0 +1,13 @@ +### Advent of Ascension 3 + +#### Infusion + +```js +global.mrt.aoa3.infusion(event, ,
, [], ) +``` + +#### Upgrade Kit + +```js +global.mrt.aoa3.upgrade_kit(event, , , , ) +``` \ No newline at end of file diff --git a/docs/apotheosis.md b/docs/apotheosis.md new file mode 100644 index 0000000..7f89fcc --- /dev/null +++ b/docs/apotheosis.md @@ -0,0 +1,19 @@ +### Apotheosis + +#### (Infusion) Enchanting + +```js +global.mrt.apotheosis.enchanting(event, , , , [[, (both 20 by default)], [, ], [, ]], ) +``` + +#### fletching + +```js +global.mrt.apotheosis.fletching(event, , '{Potion:"minecraft:night_vision"}'), [], ) +``` + +#### Spawner Modifier + +```js +global.mrt.apotheosis.spawner_modifier(event, [[, , , ], ...], [, , ], ) +``` \ No newline at end of file diff --git a/docs/appliedenergistics2.md b/docs/appliedenergistics2.md new file mode 100644 index 0000000..b573b9e --- /dev/null +++ b/docs/appliedenergistics2.md @@ -0,0 +1,13 @@ +### Applied Energistics 2 + +#### Grinder + +```js +global.mrt.appliedenergistics2.grinder(event, [], , , ) +``` + +#### Inscriber + +```js +global.mrt.appliedenergistics2.inscriber(event, , [, , (all air by default)], , ) +``` \ No newline at end of file diff --git a/docs/ars_nouveau.md b/docs/ars_nouveau.md new file mode 100644 index 0000000..8963f80 --- /dev/null +++ b/docs/ars_nouveau.md @@ -0,0 +1,19 @@ +### Ars Nouveau + +#### Enchanting Apparatus + +```js +global.mrt.ars_nouveau.enchanting_apparatus(event, , , [], ) +``` + +#### Crush (Glyph) + +```js +global.mrt.ars_nouveau.crush(event, [Ingredient.of().withChance(), ...], , ) +``` + +#### Glyph Recipe (Glyph Press) + +```js +global.mrt.ars_nouveau.glyph_recipe(event, , , , ) +``` \ No newline at end of file diff --git a/docs/astralsorcery.md b/docs/astralsorcery.md new file mode 100644 index 0000000..b4ea85b --- /dev/null +++ b/docs/astralsorcery.md @@ -0,0 +1,25 @@ +### Astral Sorcery + +#### Block Transmutation (Starlight Transmutation) + +```js +global.mrt.astralsorcery.block_transmutation(event, , [], , ) +``` + +#### Infuser (Starlight Infusion) + +```js +global.mrt.astralsorcery.infuser(event, , ,