Mods for Minecraft 1.16.1

Discover some of the wonderful mods for Minecraft version 1.16.1. These will make your Minecraft world even more fascinating to explore by adding a whole bunch of new functionalities, items, blocks and even new landscapes.

Filter by
Sort by

Origins

Origins is a mod and family of mods which adds special abilities known as origins which the player selects upon starting a new world or upon loading a world which did not in the past have the origins mod.It is essential to know that Origins is not a single mod, yes, there is a mod called Origins, but that is just one mod. Origins have summoned a whole family of mods, adding more types of abilities that are not simple. Examples of this areClassesAspectsAccessibilitiesCursesBlessingsIdeologiesElementalsAnd more Other types of Abilities can be added on top of Origins.3rd party mods add these other things. These other things are often added after Origins. Such as, if you have Origins Classes, when creating your world, you will first be asked to select an Origin and then a class. Most Origins add-ons are compatible with each other, but not all of them. It is also easy to make Origins Addons and new Origins. Many mods add more Origins or collections of Origins, such as Mob Origins.The Origins Mod adds Origins, not the other types such as Classes, Aspects, Curses, or any other non-Origin. The stand-alone mod is small but adds a few Origins, which are described on the choosing screen.Some of the Default Origins are:Human (No abilities, just like an average Player)Blazeborn (Start in the Nether, have fire immunity)Merling (You can breathe in water but not air)Enderian (You have teleportation abilities)Feline (Take no fall damage)Shulk (Additional nine inventory slots which keep inventory when the player dyes and is stronger)Elytrian (This one lets you fly)Arachnid (Allows you to trap your enemies in webs and climb up walls)More (Shown in pictures)The different types, such as Origins, can all be changed by Obtaining an Orb, a simple item the mod provides where you right-click.Origins is not meant to be played by itself but rather with the large ecosystem of mods. Origins often port to the newest MC Version and were very big around the 1.17 era. The Origins mod is designed with FabricMC in Mind but was later ported to MC Forge and can be run on QuiltMC. Origins are also widespread on servers, and there are many origins-based servers among the most popular categories of modded Minecraft servers. There are also ports of Origins to Bukkit, allowing players with vanilla clients to connect to your server; however, the Bukkit versions are less sophisticated than the Fabric version.Origins for Fabric has integrations with Apoli, Calio, PlayerAbilityLib, Cardinal, and Cloth Config, but has potential issues with OptiFabric/Optifine and Identity. Apoli and Reach Entity Attributes are Jar in Jared on the Fabric Version of Origins, so they will not need to be installed separately; however, some of the others, such as Calio and Cloth Config, will need to be installed manually.

mchoarder

Curios API

Curios API is an equipment API and Slot System for Minecraft, allowing for more usage for items and tools rather than just the traditional armour and shield/offhand slots. On the player Inventory Screen, in the top left of the player model, there is a Curios Icon (which looks like a mechanical circle with an X going through it, it starts grey but turns yellow when hovered on) where you can access the different slots for the different types of items. Mods can easily add their own Curios slots for their custom items.The mod by itself does not come with any new content or slots, only 2 example items for developers to reference when making their mods that are only accessible in creative mode. The player will be able to do something with Curios once they install mods which use it. Some mods which use Curios are MCDoom and Nameless Trinkets, and there are also some commonly used slots.Curios are good for being a central equipment slot registry to which developers can easily add stuff, others may exist, but Curios is trying to centralise it. The slots have lots of customisation, such as backgrounds, appearance, and size, and can also be added or removed at any time for any reason. The slots can also use the vanilla tag system to accept more than just some hard-coded items. The items are also compatible with inventory mechanics such as enchantments, mending, curses and other mechanics developers may add. All this is easily accessible from the simple GUI in the player inventory, which is often a strip with all the slots attached in a straight line with check marks next to the slots, but that can easily be customised. Slots can also be modified or added/removed, and the whole mod can be disabled with commands. The mod provides an extensive amount of commands.Even though Curios is very easy to use, the author still has documentation for players, which mainly contains information about the config and other stuff that would be common for modpacks. There is also documentation for developers and information about how to add it to a project.Curios are for both Forge and Fabric.

mchoarder

Cloth Config API

Cloth Config API (also Auto Config) is a config API that allows the player to change the config of the game from Within the Game’s GUI. It is one of the most popular config APIs, and it is made by shedaniel, the author of Architectury API and Roughly Enough Items, and other big names. They have excellent documentation for Developers and are lightweight for players. There are also similar APIs, such as Cloth API, a general-purpose API for Fabric (distinct from Cloth Config/Cloth Config API) and Cloth Math, a Maths API that is not dependent on Minecraft.There are multiple versions of Cloth Config, each of which has its API and Features. Each version of Cloth Config is linked to a specific version family of Minecraft.Here is the Table:V1 1.14.x (No Longer Developed)v2 1.14.x-1.15.x (No Longer Developed)v3 1.16 Snapshots before 20w17a (No Longer Developed)v4 1.16.x 20w17a and newer (Supported)v5 1.17.x (Supported)v6 1.18.x (Supported)v7 1.19 (No Longer Developed)v8 1.19.x (Supported)All stable versions of Minecraft have been supported since 1.16. It is important to note that Cloth API is not a fully functional config library; it is just a screen for setting the config, which shedaniel claims the others suck. Since Cloth is just a screen, it can work with existing APIs such as Forge Config API. It is also supposed to be primarily used with the client; however, some server features do exist, but it is suggested server mods do not use Cloth Config.Cloth was initially designed with Fabric in mind because, at the time, Fabric was very lightweight and did not have much in the way of config, but it eventually got popular and was ported to Minecraft Forge.For Players, install the mod like any other mod. Some mods may need Mod Menu to show configs where you edit the config from the Mod Menu entry.For Developers, Cloth Config has many features such as Drop Down Menus, Integration with Mod Menu, Categories, and more.Creating a Screen in your mod is easy and can be done with a single line of code.```ConfigBuilder builder = ConfigBuilder.create().setParentScreen(parent).setTitle(new TranslatableText("title.examplemod.config"));```The Config Builder can be used to set the attributes of the Config Screen, such as the background, and is automatically localised with a translation key.Note: a new builder is created every time the screen is opened.```builder.setSavingRunnable(() -> {// Serialise the config into the config file. This will be called last after all variables are updated.});```It saves the config to a file and requires custom parsing.Entries are each different, and it is recommended you read the documentation for more details on creating entries and setup Cloth Config.Another prominent feature of Cloth Config is Auto Config, which makes configuring your mod much easier with Annotations. Auto Config Annotations are flexible; they are put on top of Config files and have their annotations for fields, which can easily be set to whatever entry. e.g. @ConfigEntry.Gui.CollapsibleObject and can also be excluded @ConfigEntry.Gui.Excluded. The supported Field types by default are boolean, int, long, double, float, String, and enum.Cloth Config is one of the most common Config Screens in Minecraft, so making your mod require it will not be a significant burden for most modpack devs, as many big mods, including many by Yung use it (such as Yung’s Better Dungeons).

mchoarder

Hwyla

Hwyla is an amzing utility mod that adds a small screen that shows the stats of an item, block or mob that you point your crosshair at. Pointing your crosshair at a mob displays information regarding the health level of that mob. Pointing at a block shows you the name and properties of that block. This feature will be very useful when fighting mobs, as you now will be able to see how much damage you have dealt and that will allow you to strategise your fighting technique.Take a look at the screenshots to see what you can expect from this mod. This is a Forge mod and download links are given below. Read the installation instructions carefully.

MinecraftStorage

Mouse Wheelie

Mouse Wheelie is a Fabric clientside utility mod that allows you to perform various inventory related operations using your scroll wheel. This mod will make inventory management much more easier. Features introduced by this mod includes :When hovering over items you can scroll up and down to send single items up and down.When holding shift alongside you may send whole stacks of items.When holding control alongside you can move all stacks of the same type of item.When you're in scrollable inventories you might want to press alt to prevent scrolling items.When you're sending items via shift-leftclick you can now hold both buttons to send all stacks you're hovering overHold alt-leftclick to drop items quickly.When you're in the creative inventory and hover over the tab icons you can scroll through all the creative tabs and pages.In your facourite recipe books you canhover over the recipe grid to scroll through the pages.hover over the recipe group tabs to scroll through them.Sort inventories by clicking with your mouse wheel (you can also define an own keybinding)sorts by raw id (will most likely group by mods and similar items)hold shift while clicking to sort by quantityhold control while clicking to sort by alphabetYou can customize which sort modes you preferPress the swap key in any inventory to swap with the offhandLet your slots be automagically refilled from your inventory!Pick the matching tools for blocks by either sneaking while picking the block or by holding a tool. (this is configurable)Right-click trades or recipes to directly apply the crafting. When holding shift it will craft/trade a full stackThis is a Fabric mod and download links are given below. Read the installation instructions carefully.

MinecraftStorage

SecurityCraft

SecurityCraft adds several new feaatures that will help you keep your Minecraft base safe from griefers and thieves. Some of the best features are listed below.You can use Reinforced Blocks to completely stop your enemies from getting into your base. These blocks are unbreakable variants of some vanilla block. They have a slightly darker texture to help distinguish them from their vanilla counterparts. These blocks cannot be moved using pistons.You can place several Security Cameras across your base. You can use a screen to view the camera when you are away from your base.The Projector can be used to project fake blocks into the world. These blocks look just like regular blocks, but lacks hitboxes and hence you can easily walk through them as if they do not exist. This makes way for plenty of hidden bases that you can hide from other players in their plain sight.Take a look at the screenshots to see what you can expect from this mod. This is a Forge mod and download links are given below. Read the installation instructions carefully.

MinecraftStorage

Extra Golems

The mod Extra Golems, as the name suggests, adds extra golems to your Minecraft world. Golems in Minecraft have not been updated since they were first added many years ago. There is only one variant of the Golem in Minecraft, known as the Iron Golem. The Golems attack hostile mobs that hurt the villagers and are guards of the village.With this mod, you can get many variants of the Golem that can be made using different blocks in Minecraft. Their health and power depend on the block used to build them. Summoning them is the same as the regular Iron Golem.You can summon golems using a variety of different blocks, including Diamond, Golden, Debris, Librarian, Leaves, and many more. You can summon golems of nearly all building blocks.

Einstine Pc

The Bumblezone

The Bumblezone mod introduces a new world into Minecraft. Bumblezone adds a new dimension for the Bee. Unlike other dimensions, you don’t need any portal to enter this dimension. You can enter the bee dimension by clicking on the bee nest with an ender pearl.The Bumblezone dimension is completely made up of new blocks, all based on the honey theme. The bubble zone mod also adds the new bee mobs and structures in the new dimension. These structures include:MazesTemplesHanging gardenHomes/ CastlesSugar FountainsHoney Valleys 

Einstine Pc

Pehkui

Pehkui mod lets you modify everything in Minecraft. With Pehkui, you can edit the size, entity drops, power, damage, and much more. It enables you to adjust the size of any player, mob, and boss in Minecraft. You can change the base scale, height, width, hitbox size, and much more with this Mod.Pehkui also lets the user change the entities' size and the damage the mobs deal. You can make the friendly mobs aggressive, and the deadly mobs become friends with pehkui. Decreasing the base size also decreases all the characteristics of the edit mob or player.

Einstine Pc

Cooking for Blockheads

Cooking for Blockheads is a mod that simplifies the boring part of the game, where you have to prepare your food for your adventures. It adds many new items, blocks, and multi-block structures to make your gameplay smoother. The main feature of the mod is its main multi-block structure. It is the kitchen where you can cook and store your food, and also get access to an unlimited supply of resources you might need for cooking. The mod also provides support for a lot of food mods, most notably Pam's Harvestcraft. If you need a quick meal during your adventure, the mod adds a recipe book that allows you to directly cook/craft food items using the items in your inventory. Note: This mod requires the Balm library to work.

Asmonius

OuterEnd

The Outer End mod improves the end dimension in your Minecraft world. The normal Minecraft End Biome is boring and has only limited blocks and structures. But with this mod, the end biome becomes better. This mod also introduces many new features to the Minecraft End biome.With Outer End mod, you can find new glowing trees that lighten up the dark biome and some crystals that glow, making them look exceptional. With this mod, you will also come across mazes in the End dimension, which contain hidden rewards and loot. It also adds new mobs, including purpur golem, Ender Dog, and flies.

Einstine Pc

AtomicStryker's Infernal Mobs

Infernal mobs is a mod, that adds custom-made diablo-like modifiers to mobs. Every mob in the game has a chance to spawn with a different rarity. Each rarity increases the mob's HP, damage, or adds other abilities. These mobs make the game harder, so there is also an increased reward for killing each of them, you can get up to quadruple experience gain, and randomly generated enchanted items.The mod should also work for mobs added with other mods.List of modifiers:1UP - Mob heals fully, once, upon getting lowAlchimist - throws Potions at youBerserk - Mob deals double damage but hurts itself on attackingBlastoff - Tosses Players into the airBulwark - Mob has 50% damage resistanceChoke - Drown on land, hit Mob to breathe for a momentCloaking - Invisibility Potion effect on MobDarkness - Blindness Potion effect on the PlayerEnder - can teleport dodge attacks, reflecting damage on the PlayerExhaust - Exhaust Potion effect on the PlayerFiery - sets Player on FireGhastly - shoots FireballsGravity - knocks back or pulls PlayersLifesteal - heals from attackingNinja - can teleport dodge attacks, reflecting damage on the PlayerPoisonous - poisons the Player on attackQuicksand - Slow Potion effect on the PlayerRegen - heals Health backRust - causes high amounts of wear on weapons and armor when foughtSapper - Hunger Potion effect on PlayerSprint - high movement speed burstsSticky - can snatch Items the Player attacks withStorm - calls down LightningVengeance - reflects a portion of all damage doneWeakness - Weakness Potion effect on the PlayerWebber - spawns Webs at the Players legsWither - Wither effect

Asmonius

Swing Through Grass

Ever tried to attack a hostile mob, only for a tall grass to take the hit and break instead of hitting the mob? Events like this occur all the time in the game. This is where the Swing Through Grass mod helps you. As the mod suggests, you will now be able to swing your sword to attack your enemy, even if there is a grass obstructing your field of view.Take a look at the screenshots to see what you can expect from this mod. This is a Forge mod and download links are given below. Read the installation instructions carefully.

MinecraftStorage

SwingThroughGrass

SwingThroughGrass is a simple mod that allows you to hit mobs behind most walkable blocks. Originally, these blocks are supposed to allow you to clip through them, but when you try and attack a target through grass, the grass gets in the way and ends up getting broken. This simple mod changes the game so that you will be able to hit your target instead of breaking the grass!

Asmonius

CameraOverhaul

CameraOerhaul is really an interesting upgrade for anyone in their Minecraft world who wants a more immersive and dynamic camera video experience. This mod makes the movement of the frame dynamic both when the view moves and when we move, making the view slightly tilted to the right or towards Left depending on where you turn the view or where you walk. The rendering is very simple, but it is a detail that is very noticeable and that makes the game experience much more immersive. Not only will the displacement give a visual effect, but we will notice another chamber effect when you jump and walk. CameraOverhaul is for all those who want a more dynamic and immersive experience, even in the dynamics of the movements of the visual in play.

GabryVero

Showing 46 to 60 of 153 results

Log In Required

Accessing certain features in our website requires authentication

Sign In

Or if you do not have an account

Create an account
Post is saved
Mod version does not match with the version of selected modpack
Post is saved to your bookmarks.
Select the language

After changing the language website content will be completely translated to the selected language and you can view translated versions of available posts.