Mobs have new variants through custom heads or through unused vanilla mobs! This pack uses **over 85 custom player heads** that can be obtained and placed in your world. Spiders also turn upside down when hanging from ceilings.
This data pack/mod is completely server-side, but can also be installed on the client for singleplayer worlds! No resource pack needed!
[-> For all added heads and available settings, take a look at the wiki <-](https://github.com/Tschipcraft/more_mobs/wiki)
## Installation
Install either as:
* **Data Pack [DP]** ➜ Place `.zip` in your world's `datapacks` folder
* **Mod [Mod]** ➜ Drop into your `mods` folder and optionally install [MidnightLib](https://modrinth.com/project/codAaoxh) for a global config file and UI
To manage settings, reset, or uninstall the pack, use `/trigger tschipcraft.menu` or `/function #tschipcraft:menu`.
## Compatibility
Tested with [Rare Mobs (PMC)](https://www.planetminecraft.com/data-pack/rare-mobs-5186029/) and [Mob Captains](https://modrinth.com/datapack/mob-captains).
**Forge** is only natively supported until Minecraft 1.21.5.
This data pack follows the [Smithed](https://wiki.smithed.dev/conventions/) and essential [MC Datapacks Discord Server](https://mc-datapacks.github.io/en/conventions/index.html) Conventions to ensure data pack compatibility.
## Current issues
>
>
> Currently incompatible with [Special Mobs](https://modrinth.com/datapack/special-mobs) – [see #7](https://github.com/Tschipcraft/more_mobs/issues/7). This will be fixed in a future release.
## External Links
## Partner Offers
Want to buy **Hytale** or upgrade your edition? Use creator code `Tschipcraft` upon checkout for me to receive a commission! (The price for you stays the same)
Mojang Black Background
# Mojang Black Background
Changes white background in mojang loading screen to black
Minecraft 1.14 and newer
OptiFine is required to work! [optifine.net](https://optifine.net/home)
## Minecraft 1.16+

## Minecraft 1.14 – 1.15

The resurcepack is also available on [CurseForge](https://www.curseforge.com/minecraft/texture-packs/mojang-black-background)
Mod Remapping API
# Mod Remapping API
Remaps non-Fabric mods made for a different environment (by default obfuscated) to the current runtime mappings.
Provides hooks to expand the remapping process from other mods.
This mod doesn’t depend on a specific Minecraft version and should work on any version that Fabric Loader can launch.
### Mods depending on this API:
– [Fabricated Legacy Forge](https://modrinth.com/mod/fabricated-forge)
– [Apron](https://modrinth.com/mod/Apron)
– [Fabricated-Rift](https://modrinth.com/mod/fabricated-rift)
## Credits
### Most of the original code of the mod remapper
– paulevsGitch’s mod BetaLoader
Mod Loading Screen
# Mod Loading Screen
An advanced loading screen with the loading progress of mods. It works on all Minecraft versions, as it doesn’t even require Minecraft. Its only requirement is Fabric Loader 0.12.0 or later or Quilt Loader (specific versions of Quilt support are unknown). Do note that if you run this mod on a game other than Minecraft, the loading screen may not close itself.
## Agent
Mod Loading Screen provides a Java agent, which allows opening the loading screen before even the mod loader itself loads. This feature is primarily targeted at modpack developers who want to make a seamless loading experience. The agent can be used by passing `-javaagent:mod-loading-screen-1.0.4.jar` as a JVM argument. If the agent is used, the loading screen should *not* be installed as a mod.
## API
To depend on the API, use the Modrinth Maven. The API should be JiJed, and doing so will not include Mod Loading Screen inside your mod (it will only include the API, which is only a few kilobytes). The API is designed to have both forwards and backwards binary compatibility with future Mod Loading Screen versions. An API is provided for checking which API calls will return stubs and which ones are real.
dependencies {
// implementation, not modImplementation!
include(implementation(“maven.modrinth:mod-loading-screen:1.0.4:api”))
}
“`
The API has two top-level classes: `LoadingScreenApi` and `AvailableFeatures`. Full javadocs are available for both classes.
Mo Glass
# Mo Glass
A Minecraft mod that adds glass stairs and glass slabs to the game, including stained and tinted glass variants, while maintaining all of the seamless transparency and translucency that makes vanilla Minecraft’s glass blocks look so great.

## Features
– Glass Slabs!
– Glass Stairs!
– Stained Glass Slabs! (since v1.3)
– Stained Glass Stairs! (since v1.3)
– Tinted Glass Slabs! (since v1.6)
– Tinted Glass Stairs! (since v1.6)
– Working Transparency! (see below)
– Working Translucency! (for tinted glass)
– Compatible with the Translucent Glass mod! (since Mo Glass v1.10, Translucent Glass v0.2)
## Seamless Transparency
Both the stairs and the slabs are see-through in the same way as vanilla glass blocks. You can place multiple stairs, slabs and full blocks next to each other and they will look like a single piece of glass.
## Why aren’t these blocks part of vanilla Minecraft?
Before I started making this mod, I always thought that Mojang just forgot about these blocks, or that they were too lazy to add them. But now that I’ve added these blocks myself and spent many hours to get the transparency to work, I think I finally understand why Mojang didn’t bother. Minecraft’s stairs are surprisingly complex blocks and they were never meant to be made transparent. Slabs might be easy enough, but I think if Mojang added those then people wouldn’t stop asking for the stairs. And glass stairs are an absolute nightmare to make.
Stairs can be placed facing North, East, South or West, they can be upside-down or right-side-up, they can be straight or curved in one of four different ways and they have six faces that may or may not be transparent, depending on what block is next to them. But here’s the catch: On each of those six faces, there could be another block of glass stairs that can also be placed facing North, East, South or West, upside-down or right-side-up and either straight or curved in one of four different ways. And then of course, on each of the six faces there could also be a non-transparent block, a regular glass block or a glass slab that is either placed on the bottom half, top half, or is a double slab.
In the end, there are 10800 possible scenarios that need to be accounted for just to calculate transparency of glass stairs. But then you also have to calculate the transparency of glass slabs (810 possible scenarios) and adjust the transparency calculation of regular glass blocks (270 possible scenarios, or 258 more than before).*
That’s a lot of effort just to add two new blocks to the game – and a lot of opportunities for new bugs to sneak in. That, I think, is why Mojang didn’t bother.
*Here’s how I got those numbers: (click to expand)
possible variations of stairs:
pvStairs = 4 * 2 * 5 = 40
possible variations of slabs:
pvSlabs = 3
possible variations of glass blocks:
pvGlass = 1
possible variations of non-transparent blocks:
pvBlocks = 1 (because any variations would be ignored when calculating transparency)
possibly transparent faces of a block (including stairs, even though they have more faces):
f = 6
possible scenarios for transparency of stairs:
psStairs = pvAll * f * pvStairs = 45 * 6 * 40 = 10800
possible scenarios for transparency of slabs:
psSlabs = pvAll * f * pvSlabs = 45 * 6 * 3 = 810
possible scenarios for transparency of glass blocks:
psGlass = pvAll * f * pvGlass = 45 * 6 * 1 = 270
possible scenarios for transparency of glass blocks if glass stairs and slabs don’t exist:
psGlassVanilla = (pvGlass + pvBlocks) * f * pvGlass = (1 + 1) * 6 * 1 = 12
## What about connected textures mods?
~~So far, all connected textures mods that I’ve seen only seem to work on full blocks. They don’t generate connected textures for stairs or slabs, which makes using them with Mo Glass impossible.~~
~~It’s not that Mo Glass doesn’t have support for connected textures, it’s that connected textures mods don’t have support for Mo Glass (or any other mod that adds stairs/slabs).~~
~~This might change one day as people make new mods all the time, so do let me know if there is a connected texture mod that supports stairs now. I’d be happy to add the extra texture files needed (if any) to make that work with Mo Glass.~~
This has changed and support for connected textures is currently being worked on. Please be patient.
## Usage
By default, the mod changes the number of seconds before disappearance from 10 to 5, but the mod can be customized using the Cloth Config API mod.
## Support
If you like my mods, feel free to support their creator!