Description
The Ore Core is a forge mod that combines a lots of other mods and ideas from me to a compact and powerful core. (i only use the ideas of the mods, the code & textures are from myself).
NOTE: This mod will not continue in Minecraft 1.13 and higher, for the newer versions use ExtraGems and ExtraOres as an alternative.
Features:
- Nether ores
- End ores
- Compressed ores
- Fossils
- Experience ores
- Mod based ores for all types
- Expandet ore drop option (resource + dust when mined)
- Gravel "ores" that drop nuggets
- Armors / tools / weapons / blocks / items
- Update-Checker
- Config file with a lots of functions!
- World gen options and fixes
- more Monster Egg Blocks, for the end and nether
- chisel mod compatible
- much more!
* uses the Forge OreDictionary
coming soon:
- sparse ores
- mixed metal ores
- more mod support
- more gravel "ores"
- fossil expansion
- advancements
and more :D
end ores - nether ores - compressed ores - vanilla ores:
the fossils:
experience ores (with animated textures):
basalt - marmor - slate + oil slate
Lava infused Netherrack (animated) - lava crystal ore - lava crystal block - ashe block - meteor block
loam block - loam bricks
Gravel "ores" that drop nuggets
Eye Blocks (with animation)
Items & Tools
Emerald Armor, Lava Crystal Armor (with effect when you wear all parts), Bone Armor
Modded ores! [must be activated it in the config file]
(Copper, Iridium, Amethyst, Tin, Uranium, Silver, Aluminium, Sapphire, Ruby, Lead, Platinum)
fossil stands! (custom model)
Mod support / OreDictionary
The mod uses the Forge OreDictionary to make it compatible with other Mods. The other mod must be support it too (with crafting/smelting recipes, ...)
For all modders, here is the OreDictionary registry of the OreCore:
//blocks
OreDictionary.registerOre("oreMixed", ModBlocks.mixedOre);
OreDictionary.registerOre("oreCompressedCoal", ModBlocks.compressedCoalOre);
OreDictionary.registerOre("oreCompressedDiamond", ModBlocks.compressedDiamondOre);
OreDictionary.registerOre("oreCompressedEmerald", ModBlocks.compressedEmeraldOre);
OreDictionary.registerOre("oreCompressedGold", ModBlocks.compressedGoldOre);
OreDictionary.registerOre("oreCompressedIron", ModBlocks.compressedIronOre);
OreDictionary.registerOre("oreCompressedLapis", ModBlocks.compressedLapisOre);
OreDictionary.registerOre("oreCompressedRedstone", ModBlocks.compressedRedstoneOre);
OreDictionary.registerOre("oreCoal", ModBlocks.netherCoalOre);
OreDictionary.registerOre("oreDiamond", ModBlocks.netherDiamondOre);
OreDictionary.registerOre("oreEmerald", ModBlocks.netherEmeraldOre);
OreDictionary.registerOre("oreGold", ModBlocks.netherGoldOre);
OreDictionary.registerOre("oreIron", ModBlocks.netherIronOre);
OreDictionary.registerOre("oreLapis", ModBlocks.netherLapisOre);
OreDictionary.registerOre("oreRedstone", ModBlocks.netherRedstoneOre);
OreDictionary.registerOre("oreGlowstone", ModBlocks.netherGlowstoneOre);
OreDictionary.registerOre("oreCoal", ModBlocks.endCoalOre);
OreDictionary.registerOre("oreDiamond", ModBlocks.endDiamondOre);
OreDictionary.registerOre("oreEmerald", ModBlocks.endEmeraldOre);
OreDictionary.registerOre("oreGold", ModBlocks.endGoldOre);
OreDictionary.registerOre("oreIron", ModBlocks.endIronOre);
OreDictionary.registerOre("oreLapis", ModBlocks.endLapisOre);
OreDictionary.registerOre("oreRedstone", ModBlocks.endRedstoneOre);
OreDictionary.registerOre("oreGlowstone", ModBlocks.endGlowstoneOre);
OreDictionary.registerOre("oreXp", ModBlocks.xpOre);
OreDictionary.registerOre("oreNetherXp", ModBlocks.netherXpOre);
OreDictionary.registerOre("oreEndXp", ModBlocks.endXpOre);
OreDictionary.registerOre("blockBasalt", ModBlocks.basaltBlock);
OreDictionary.registerOre("blockMarmor", ModBlocks.marmorBlock);
OreDictionary.registerOre("blockSlate", ModBlocks.slateBlock);
OreDictionary.registerOre("stoneBasalt", ModBlocks.basaltOre);
OreDictionary.registerOre("stoneMarmor", ModBlocks.marmorOre);
OreDictionary.registerOre("stoneSlate", ModBlocks.slateOre);
OreDictionary.registerOre("stoneOilSlate", ModBlocks.oilSlateOre);
OreDictionary.registerOre("dustAshe", ModItems.ashe);
OreDictionary.registerOre("gemLavaCrystal", ModItems.lavaCrystal);
OreDictionary.registerOre("loamBall", ModItems.loamBall);
OreDictionary.registerOre("ingotLoamBrick", ModItems.loamBrick);
OreDictionary.registerOre("meteor", ModItems.meteor);
OreDictionary.registerOre("itemStone", ModItems.stone);
OreDictionary.registerOre("blockAshe", ModBlocks.asheBlock);
OreDictionary.registerOre("oreLavaCrystal", ModBlocks.lavaCrystalOre);
OreDictionary.registerOre("blockLavaCrystal", ModBlocks.lavaCrystalBlock);
OreDictionary.registerOre("blockLoam", ModBlocks.loamBlock);
OreDictionary.registerOre("blockLoamBricks", ModBlocks.loamBrickBlock);
OreDictionary.registerOre("blockMeteor", ModBlocks.meteorBlock);
OreDictionary.registerOre("blockMagmarack", ModBlocks.magmarackBlock);
OreDictionary.registerOre("oreGravelGold", ModBlocks.goldGravelOre);
OreDictionary.registerOre("oreGravelIron", ModBlocks.ironGravelOre);
OreDictionary.registerOre("blockNetherEye", ModBlocks.netherEyeBlock);
OreDictionary.registerOre("blockNetherEye", ModBlocks.netherEyeBlock2);
OreDictionary.registerOre("blockEndEye", ModBlocks.endEyeBlock);
OreDictionary.registerOre("blockNetherMob", ModBlocks.netherMobBlock);
OreDictionary.registerOre("blockEndMob", ModBlocks.endEyeBlock);
OreDictionary.registerOre("oreAluminium", ModBlocks.netherAluminiumOre);
OreDictionary.registerOre("oreAmethyst", ModBlocks.netherAmethystOre);
OreDictionary.registerOre("oreCopper", ModBlocks.netherCopperOre);
OreDictionary.registerOre("oreIridium", ModBlocks.netherIridiumOre);
OreDictionary.registerOre("oreLead", ModBlocks.netherLeadOre);
OreDictionary.registerOre("orePlatinum", ModBlocks.netherPlatinOre);
OreDictionary.registerOre("oreRuby", ModBlocks.netherRubyOre);
OreDictionary.registerOre("oreSapphire", ModBlocks.netherSapphireOre);
OreDictionary.registerOre("oreSilver", ModBlocks.netherSilverOre);
OreDictionary.registerOre("oreTin", ModBlocks.netherTinOre);
OreDictionary.registerOre("oreUranium", ModBlocks.netherUraniumOre);
OreDictionary.registerOre("oreAluminium", ModBlocks.endAluminiumOre);
OreDictionary.registerOre("oreAmethyst", ModBlocks.endAmethystOre);
OreDictionary.registerOre("oreCopper", ModBlocks.endCopperOre);
OreDictionary.registerOre("oreIridium", ModBlocks.endIridiumOre);
OreDictionary.registerOre("oreLead", ModBlocks.endLeadOre);
OreDictionary.registerOre("orePlatinum", ModBlocks.endPlatinOre);
OreDictionary.registerOre("oreRuby", ModBlocks.endRubyOre);
OreDictionary.registerOre("oreSapphire", ModBlocks.endSapphireOre);
OreDictionary.registerOre("oreSilver", ModBlocks.endSilverOre);
OreDictionary.registerOre("oreTin", ModBlocks.endTinOre);
OreDictionary.registerOre("oreUranium", ModBlocks.endUraniumOre);
// items
OreDictionary.registerOre("fossil", ModItems.fossil);
OreDictionary.registerOre("fossil", ModItems.fossil2);
OreDictionary.registerOre("fossil", ModItems.fossil3);
OreDictionary.registerOre("fossil", ModItems.fossil4);
OreDictionary.registerOre("fossil", ModItems.fossil5);
OreDictionary.registerOre("fossil", ModItems.fossil6);
OreDictionary.registerOre("pasteOil", ModItems.oilPaste);
OreDictionary.registerOre("bucketOil", ModItems.oilBucket);
OreDictionary.registerOre("dustCoal", ModItems.coalDust);
OreDictionary.registerOre("dustIron", ModItems.ironDust);
OreDictionary.registerOre("dustGold", ModItems.goldDust);
OreDictionary.registerOre("dustLapis", ModItems.lapisDust);
OreDictionary.registerOre("dustEmerald", ModItems.emeraldDust);
OreDictionary.registerOre("dustDiamond", ModItems.diamondDust);
OreDictionary.registerOre("dustTinyCoal", ModItems.tinyCoalDust);
OreDictionary.registerOre("dustTinyIron", ModItems.tinyIronDust);
OreDictionary.registerOre("dustTinyGold", ModItems.tinyGoldDust);
OreDictionary.registerOre("dustTinyLapis", ModItems.tinyLapisDust);
OreDictionary.registerOre("dustTinyEmerald", ModItems.tinyEmeraldDust);
OreDictionary.registerOre("swordEmerald", ModItems.emeraldSword);
OreDictionary.registerOre("pickaxeEmerald", ModItems.emeraldPickaxe);
OreDictionary.registerOre("axeEmerald", ModItems.emeraldAxe);
OreDictionary.registerOre("shovelEmerald", ModItems.emeraldShovel);
OreDictionary.registerOre("hoeEmerald", ModItems.emeraldHoe);
OreDictionary.registerOre("swordEmerald", ModItems.emeraldSword);
OreDictionary.registerOre("swordLavaCrystal", ModItems.lavacrystalSword);
OreDictionary.registerOre("pickaxeLavaCrystal", ModItems.lavacrystalPickaxe);
OreDictionary.registerOre("axeLavaCrystal", ModItems.lavacrystalAxe);
OreDictionary.registerOre("shovelLavaCrystal", ModItems.lavacrystalShovel);
OreDictionary.registerOre("hoeLavaCrystal", ModItems.lavacrystalHoe);
OreDictionary.registerOre("swordLavaCrystal", ModItems.lavacrystalSword);
OreDictionary.registerOre("ingotAluminium", ModItems.aluminiumIngot);
OreDictionary.registerOre("gemAmethyst", ModItems.amethyst);
OreDictionary.registerOre("ingotCopper", ModItems.copperIngot);
OreDictionary.registerOre("gemIridium", ModItems.iridium);
OreDictionary.registerOre("ingotLead", ModItems.leadIngot);
OreDictionary.registerOre("ingotPlatinum", ModItems.platinumIngot);
OreDictionary.registerOre("gemRuby", ModItems.ruby);
OreDictionary.registerOre("gemSapphire", ModItems.sapphire);
OreDictionary.registerOre("ingotSilver", ModItems.silverIngot);
OreDictionary.registerOre("ingotTin", ModItems.tinIngot);
OreDictionary.registerOre("gemUranium", ModItems.uranium);
Installation
Automatic Install (recommended):
Download the Curseforge launcher here https://curseforge.overwolf.com/
This is the easiest way to install the mod.
1. Link your Minecraft game
2. Create a custom profile or use a already created one
3. Click on 'Add more content' and search for the mod
Manual Install:
1. Make sure you have already installed Minecraft Forge.
2. Locate the minecraft application folder.
- On windows open Run from the start menu, type %appdata%\.minecraft\ and click Run.
- On mac open finder, hold down ALT and click Go then Library in the top menu bar. Open the folder Application Support and look for minecraft
3. Place the mod you have just downloaded (.jar file) into the mods folder.
4. When you launch Minecraft and click the mods button you should now see the mod is installed.
Rights and License - Important!
This MOD may only be distributed where uploaded, mirrored, or otherwise linked to by the OWNER solely. All mirrors of this mod must have advance written permission from the OWNER. ANY attempts to make money off of this MOD (selling, selling modified versions, adfly, sharecash, etc.) are STRICTLY FORBIDDEN, and the OWNER may claim damages or take other action to rectify the situation.
Mod reposts (without the rights of the mod creators) are STRICKTLY FORBIDDEN!
Youtube & Co.
Let's Plays, Reviews and videos are okay, but please write the link to this post in the descriprion. It would be nice to contact me if you recorded a video, so I could paste it in here ;)
Modpacks:
You want this mod in your mod pack?
> Your mod pack needs a link back to this post.
> You cannot claim that you made any part of the mod, and you must give credit to the author of the mod.
Banners
<a href="https://minecraft.curseforge.com/projects/ore-core"><img src='http://i.imgur.com/SWTE7DA.png' /></a>
<a href="https://minecraft.curseforge.com/projects/ore-core"><img src='http://i.imgur.com/mLPzoJP.png' /></a>
<a href="https://minecraft.curseforge.com/projects/ore-core"><img src='http://i.imgur.com/p46J5bx.png' /></a>
The old Ore Core (outdated, 1.8.x versions)
Installation
Automatic Install (recommended):
Download the Curseforge launcher here https://curseforge.overwolf.com/
This is the easiest way to install the mod.
1. Link your Minecraft game
2. Create a custom profile or use a already created one
3. Click on 'Add more content' and search for the mod
Manual Install:
1. Make sure you have already installed Minecraft Forge.
2. Locate the minecraft application folder.
- On windows open Run from the start menu, type %appdata%\.minecraft\ and click Run.
- On mac open finder, hold down ALT and click Go then Library in the top menu bar. Open the folder Application Support and look for minecraft
3. Place the mod you have just downloaded (.jar file) into the mods folder.
4. When you launch Minecraft and click the mods button you should now see the mod is installed.
Rights
This MOD may only be distributed where uploaded, mirrored, or otherwise linked to by the OWNER solely. All mirrors of this mod must have advance written permission from the OWNER. ANY attempts to make money off of this MOD (selling, selling modified versions, adfly, sharecash, etc.) are STRICTLY FORBIDDEN, and the OWNER may claim damages or take other action to rectify the situation.
Mod reposts (without the rights of the mod creators) are STRICKTLY FORBIDDEN!
Youtube & Co.
Let's Plays, Reviews and videos are okay, but please write the link to this post in the descriprion. It would be nice to contact me if you recorded a video, so I could paste it in here ;)
Modpacks:
You want this mod in your mod pack?
> Your mod pack needs a link back to this post.
> You cannot claim that you made any part of the mod, and you must give credit to the author of the mod.
FAQ - Frequently asked question
Q: I found a bug, where should i report it?
A: In the bug tracker of the curseforge page from the mod.
Q: I have another problem, where should i report it?
A: In the #help channel of my discord or in the comments.
Q: I have a suggestion, where should i report it?
A: In the #feedback channel in my discord or in the comments.
Q: Do you intend to port the mod to an older version?
A: I don't usually do backports.
Q: Do you also bring the mod for fabric?
A: No.
Q: Can i add your mod in my modpack?
A: Yes, but it has to be linked to the project page and the author (XxRexRaptorxX) has to be mentioned. (Curseforge modpacks meet this criterion by default)
Q: Can i make a video/tutorial/let's play/... about your mod or project?
A: Of course! But a mention in the video description would be great. You can send me a link, then it might make it to the project page.
Q: Can i upload your projects to another site?
A: wtf no?!
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
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.
Prepare
Lounch Minecraft and select your Forge istallation as Version this will create a Folder called Mods.
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
Enjoy
You are now Ready. Re-start your Game and start Playing.