Loading...
Beta Modpages Unclaimed

Mechanics - Crafting Ways

Adds different crafting mechanics.

0 Likes
243521 Downloads
Created by wolforce

Description

Mechanics - Crafting Ways

Go To Website

This mod adds some crafting mechanics to spice up modpacks.
By itself, this mod adds almost nothing to the game, and must be configured to add recipes.
Most recipes are available through CraftTweaker.

Crushing Block

The Crushing Block can be dropped on top of blocks to crush them.

Example usage:

mods.mechanics.addCrushingBlockRecipe(
    [<minecraft:iron_ingot>] // item that is crushed
    [<minecraft:gold_ingot> , <minecraft:diamond>], // possible resulting items
    [0.75, 0.25] // probabilities of each possible result
);


Alloying Furnace

The Alloy furnace requires fuel to transform two items into a third. The order does not matter.

Example usage:

mods.mechanics.addAlloyFurnaceRecipe(
    <minecraft:iron_ingot>, // one input item
    <minecraft:gold_ingot>, // other input item
    <minecraft:diamond> // resulting item
);


Transforming Items with the Nether Portal

Throw items into the Nether Portal and they come out transformed!

Example usage:

mods.mechanics.addNetherPortalRecipe(
    <minecraft:iron_ingot>, // item thrown in
    <minecraft:gold_ingot> // item that comes out
);


Drying Table

Similar to Drying Racks from Tinker's and Primal Core. Time will transform an item stack into another.



Example usage:

mods.mechanics.addDryingTableRecipe(
    <minecraft:rotten_flesh>, // item placed
    <minecraft:leather> // final dried item
);

or

mods.mechanics.addDryingTableRecipe(
    <minecraft:rotten_flesh>, // item placed
    <minecraft:leather>, // final dried item
    <1200> // time it takes to dry, in ticks
);


Martlets

Martlets to crack drown blocks. Comes in four varieties, stone, iron, gold and diamond.

Example usage:

mods.mechanics.addMartletRecipe(
    <minecraft:sandstone:0>, // block broken by a Martlet
    <minecraft:sand:0> // resulting item that drops
);


Amplifying Tube

The Amplifying Tube can transform blocks in world into other blocks or into liquids.
Simply place two to eight amplifying tubes vertically, and the block immediately beneath them will transform!



Example usage:

mods.mechanics.addTubeRecipe(
    <minecraft:leaves:0>, // block placed on the bottom
    <liquid:water> // resulting liquid
);

or

mods.mechanics.addTubeRecipe(
    <minecraft:cobblestone>, // block placed on the bottom
    <minecraft:stone:0> // resulting block
);


Burst Seeds

Burst Seeds are tiny blocks that, after some random amount of time, will burst into a bunch of copies of a resource.

Burst Seeds, unfortunately, do not use CraftTweaker. Instead, you need to create a file called "mechanics_burst_seeds.txt" in your scripts folder.
Inside, you can add or remove burst seeds, one per line.
There are three ways of creating burst seeds (without the quotes):
"burst seed registry name" "block or item registry name" "block or item metadata"
"burst seed registry name" "block or item registry name" "block or item metadata" "any texture"
"burst seed registry name" "block or item registry name" "block or item metadata" "minimum number" "maximum number" "any texture"

Example mechanics_burst_seeds.txt file:
remove burst_seed_end_stone
burst_seed_sea_lantern minecraft:sea_lantern 0
burst_seed_furnace minecraft:furnace 0 minecraft:furnace_front_off
burst_seed_heavy_block mechanics:heavy_block 0 64 64 mechanics:heavy_block



All CraftTweaker Methods:


Add a recipe for the Alloy Furnace.
mods.mechanics.addAlloyFurnaceRecipe((IIngredient, IIngredient, IItemStack)
Add a recipe for the Crushing Block. The number of probabilities must be the same as the number of outputs. If the sum of the probabilities isn't 1, there is a chance for an output of nothing.
mods.mechanics.addCrushingBlockRecipe(IItemStack[], IItemStack[], double[])
Add a recipe for the Crushing Block. The number of probabilities must be the same as the number of outputs. If the sum of the probabilities isn't 1, there is a chance for an output of nothing.
mods.mechanics.addCrushingBlockRecipe(IItemStack, IItemStack[], double[])
Add a recipe for the Drying Table.
mods.mechanics.addDryingTableRecipe((IIngredient, IItemStack)
Add a recipe for the Drying Table specifying the time in ticks.
mods.mechanics.addDryingTableRecipe((IIngredient, IItemStack, int)
Add a recipe for the Martlet.
mods.mechanics.addMartletRecipe((IIngredient, IItemStack)
Add a new transformation recipe through the nether portal. It is not possible to change the number of items this way. 1 to 1 transformations only.
mods.mechanics.addNetherPortalRecipe(IItemStack, IItemStack)
Add a recipe for the Tube with a solid block output.
mods.mechanics.addTubeRecipe(IItemStack, IItemStack)
Add a recipe for the Tube with a solid block output.
mods.mechanics.addTubeRecipe(IItemStack[], IItemStack)
Add a recipe for the Tube with a liquid output.
mods.mechanics.addTubeRecipe(IItemStack, ILiquidStack)
Add a recipe for the Tube with a liquid output.
mods.mechanics.addTubeRecipe(IItemStack[], ILiquidStack)
Remove a recipe for the Crushing Block.
mods.mechanics.removeCrushingBlockRecipe(IItemStack)

Remove a recipe for the Martlet.
mods.mechanics.removeMartletRecipe((IIngredient)
Remove a nether portal transformation recipe.
mods.mechanics.removeNetherPortalRecipe(IItemStack)
Remove a recipe for the Tube.
mods.mechanics.removeTubeRecipe(IItemStack)





Feel free to join the discord and share your ideas and feedback!


Sponsored by BISECT HOSTING
Dedicated to make your Minecraft server hosting experience as easy and affordable as it can possibly be.
Get 25% off your first month for any gaming server with the code "wolforce".




    MCTCG       Mega Builds       Simple Shops       Player Tabs       Support me!    
                            Support me on Patreon!    
     
Hearth Well       Vaultopic       Mechanics       Pristeel       Groves       Miner Golems
                             


AD Become Premium to remove Ads!

What means Verified?

  • Compatibility: The mod should be compatible with the latest version of Minecraft and be clearly labeled with its supported versions.
  • Functionality: The mod should work as advertised and not cause any game-breaking bugs or crashes.
  • Security: The mod should not contain any malicious code or attempts to steal personal information.
  • Performance: The mod should not cause a significant decrease in the game's performance, such as by causing lag or reducing frame rates.
  • Originality: The mod should be original and not a copy of someone else's work.
  • Up-to-date: The mod should be regularly updated to fix bugs, improve performance, and maintain compatibility with the latest version of Minecraft.
  • Support: The mod should have an active developer who provides support and troubleshooting assistance to users.
  • License: The mod should be released under a clear and open source license that allows others to use, modify, and redistribute the code.
  • Documentation: The mod should come with clear and detailed documentation on how to install and use it.

AD Become Premium to remove Ads!

How to Install

1

Download Forge & Java

Download Forge from the offical Site or here. If you dont have Java installed then install it now from here. After Downloading Forge you can run the file with Java.

2

Prepare

Lounch Minecraft and select your Forge istallation as Version this will create a Folder called Mods.

3

Add Mods

Type Win+R and type %appdata% and open the .minecraft Folder. There will you find your Folder called Mods. Place all Mods you want to play in this Folder

4

Enjoy

You are now Ready. Re-start your Game and start Playing.

More Mods like this

Mouse Tweaks

Enhances inventory management by adding various functions to the mouse buttons.

Bookshelf

An open source library for other mods!

Comforts (Fabric/Forge/Quilt)

Adds sleeping bags and hammocks for, respectively, portability and turning day to night, without setting new spawns. Comes in 16 different colors!

BetterFps

Performance Improvements

Supplementaries

Vanilla+ additions: Jars, signposts, faucets, weather vanes spring launchers, sconces, planters, lights, decoration and automation

RandomPatches (Forge)

A bunch of miscellaneous patches for Minecraft, including configurable connection timeouts, player speed limits and other bug fixes and improvements.

FancyMenu

Customize Minecraft's menus with ease!

Phosphor (Forge)

Performance improvements for Minecraft's lighting engine

Snad

Finally, sand that actually makes sugarcane grow faster.