TwelveIterationMods / ExCompressum

Minecraft Mod. Ex Nihilo Addon. Attempts to reduce grind by adding pre-automation tools like compressed hammers.
https://mods.twelveiterations.com/mc/ex-compressum/
Other
27 stars 25 forks source link

Document CraftTweaker Support #305

Closed BlayTheNinth closed 8 months ago

BlayTheNinth commented 3 years ago

Needs to be added to the docs site.

import mods.exnihilosequentia.ZenSieveRecipe;
import mods.excompressum.HeavySieveRecipe;
import mods.excompressum.GeneratedHeavySieveRecipe;
import mods.excompressum.MeshType;

<recipetype:excompressum:heavy_sieve>.create("example")
    .setInput(<item:minecraft:oak_leaves>)
    .setMinimumMesh(MeshType.DIAMOND)
    .setMeshes([MeshType.DIAMOND, MeshType.STRING])
    .setLootTable("blocks/cobblestone");
    //.addDrop(<item:exnihilosequentia:silkworm>);
    //.addDrop(<item:minecraft:diamond>, 0.5);

<recipetype:exnihilosequentia:sieve>.create("example").setInput(<item:minecraft:cobblestone>).addDrop(<item:minecraft:netherite_ingot>).addRoll("diamond", 0.01).addRoll("string", 1.0).setWaterlogged();

<recipetype:excompressum:heavy_sieve_generated>.create("example")
    .setInput(<item:excompressum:compressed_cobblestone>)
    .setSource(<item:minecraft:cobblestone>, 90);

<recipetype:excompressum:wooden_crucible>.create("example").setInput(<item:minecraft:cobblestone>).setFluid(<fluid:minecraft:water> * 500);

<recipetype:excompressum:chicken_stick>.create("example").setInput(<item:minecraft:iron_block>).setLootTable("blocks/diamond_block");

<recipetype:excompressum:hammer>.create("example").setInput(<item:minecraft:cobblestone>).addDrop(<item:minecraft:netherite_ingot> * 30);

<recipetype:excompressum:compressed_hammer>.create("example").setInput(<item:excompressum:compressed_cobblestone>).addDrop(<item:minecraft:netherite_ingot> * 64);
TarantelTM commented 3 years ago

Hello I use your mod in my pack and added many new outputs. at the begin the new outputs was visible in JEI but now after adding more and more JEI dont show any custom outputs of my custom sieve edits anymore. The Sieve Recipes still working but no JEI entry is Visible.

Minionade commented 2 years ago

nvm