Earlier Versions
| Name | Size | Uploaded | Game Version | Downloads | |
| Abnormals Core 1.16.5 - 3.2.0 release | 924.85 KB | Jun 14, 2021 | 1.16.5 | 343,012 | Download |
| Abnormals Core 1.16.5 - 3.1.1 release | 899.26 KB | Mar 9, 2021 | 1.16.5 | 2,456,930 | Download |
| Abnormals Core 1.16.5 - 3.1.0 release | 859.80 KB | Feb 26, 2021 | 1.16.5 | 247,946 | Download |
| Abnormals Core 1.16.4 - 3.0.6 release | 849.04 KB | Jan 4, 2021 | 1.16.5 | 874,884 | Download |
| Abnormals Core 1.16.4 - 3.0.5 release | 844.50 KB | Jan 1, 2021 | 1.16.4 | 77,476 | Download |
| Abnormals Core 1.16.1 - 2.0.9 release | 669.18 KB | Dec 24, 2020 | 1.16.1 | 8,578 | Download |
| Abnormals Core 1.16.4 - 3.0.4 release | 837.77 KB | Dec 23, 2020 | 1.16.4 | 13,120 | Download |
| Abnormals Core 1.16.4 - 3.0.3 release | 818.80 KB | Dec 15, 2020 | 1.16.4 | 3,475 | Download |
| Abnormals Core 1.16.4 - 3.0.2 release | 781.19 KB | Dec 7, 2020 | 1.16.4 | 1,306 | Download |
| Abnormals Core 1.16.4 - 3.0.1 release | 781.25 KB | Dec 6, 2020 | 1.16.4 | 675 | Download |
| Abnormals Core 1.16.4 - 3.0.0 release | 779.67 KB | Dec 5, 2020 | 1.16.4 | 947 | Download |
| Abnormals-Core-1.16.1-v2.0.8 release | 669.08 KB | Nov 6, 2020 | 1.16.1 | 15,372 | Download |
| Abnormals-Core-1.16.1-v2.0.7 release | 503.99 KB | Oct 24, 2020 | 1.16.1 | 4,914 | Download |
| Abnormals-Core-1.16.1-v2.0.6 release | 503.08 KB | Oct 17, 2020 | 1.16.1 | 35,848 | Download |
| Abnormals-Core-1.16.1-v2.0.5 release | 502.71 KB | Oct 6, 2020 | 1.16.1 | 44,895 | Download |
| Abnormals-Core-1.16.1-v2.0.4 release | 524.81 KB | Sep 24, 2020 | 1.16.1 | 23,192 | Download |
| Abnormals-Core-1.16.1-v2.0.3 release | 466.83 KB | Aug 27, 2020 | 1.16.1 | 109,846 | Download |
| Abnormals-Core-1.16.1-v2.0.2 release | 464.40 KB | Aug 6, 2020 | 1.16.1 | 155,725 | Download |
| Abnormals-Core-1.16.1-v2.0.1 release | 471.08 KB | Jul 29, 2020 | 1.16.1 | 38,897 | Download |
| Abnormals-Core-1.16.1-v2.0.0 release | 471.41 KB | Jun 26, 2020 | 1.16.1 | 57,342 | Download |
| Abnormals-Core-1.15.2-v1.0.6 release | 474.38 KB | Jun 14, 2020 | 1.15.2 | 2,361,210 | Download |
| Abnormals-Core-1.15.2-v1.0.5 release | 416.17 KB | May 30, 2020 | 1.15.2 | 99,721 | Download |
| Abnormals-Core-1.15.2-v1.0.4 release | 400.15 KB | May 15, 2020 | 1.15.2 | 172,982 | Download |
| Abnormals-Core-1.15.2-v1.0.3 release | 399.84 KB | May 15, 2020 | 1.15.2 | 322 | Download |
| Abnormals-Core-1.15.2-v1.0.2 release | 396.27 KB | May 14, 2020 | 1.15.2 | 334 | Download |
| Abnormals-Core-1.15.2-v1.0.1 release | 395.91 KB | May 13, 2020 | 1.15.2 | 305 | Download |
| Abnormals-Core-1.15.2-v1.0.0 release | 387.62 KB | May 12, 2020 | 1.15.2 | 420 | Download |
Description

![]()
📖 About:
Abnormals Core is a mod library developed for easily accessing code which is shared across most Team Abnormals mods, It comes with many useful features, such as a registry helper, data syncing, and the Endimator animation API.
![]()
📦 Our Mods:
- Abnormals Delight
- Allurement
- Atmospheric
- Autumnity
- Bamboo Blocks
- Berry Good
- Buzzier Bees
- Endergetic Expansion
- Environmental
- Extra Boats
- Neapolitan
- Personality
- Savage and Ravage
- Upgrade Aquatic
![]()
💻 For Developers:
This guide should only be used if you are a developer wanting to using Abnormals Core in your mod. If you're a player, you may disregard this guide.
Adding Abnormals Core to your mod is quite simple! First off you need to add Abnormals Core as a dependency to access the library in code. To do so, add the following into your build.gradle:
repositories {
maven {
url = "https://maven.jaackson.me"
}
}
dependencies {
implementation fg.deobf("com.minecraftabnormals:abnormals-core:<version>")
}
Next you need to add it as a dependecy on Forge to make your mod require Abnormals Core when loading. In your mods.toml add the following block to the file:
[[dependencies.<modId>]]
modId = "abnormals_core"
mandatory = true
versionRange = "[<version>,)"
ordering = "BEFORE"
side = "BOTH"
Replace <version> in the examples above with the version on you want. For example, 1.16.5-3.1.1 will give us abnormals-core-1.16.5-3.1.1.jar. The example for the mods.toml is targeting the version selected and any versions beyond. If you want to target it differently, you may want to read up on the mods.toml spec.
![]()

Get 0.05 TON 💎
Download
Add a comment