Ore Core
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).
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
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 or .zip 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. But you can use this as a core mod for your own mod :)
Youtube & other
Let´s Plays, Reviews and videos are okay, but please write the link to the orginal forum post in the descriprion. And when you write the download link, use the Adf.ly link! Thanks.
Modpacks
You want the mod in your mod pack?
1. Your mod pack needs a link back to this forum post.
2. You cannot make any money off of the mod pack.
3. You cannot claim that you made any part of the mod, and you must give credit to the author of the mod.
(Mod by XxRexRaptorxX).
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)
Description
The Ore Core mod is a mod that adds over 30 new ores and there blocks, items,...
You can use it as a core for your own mod :)
The mod is WIP (work in progress) and currently...useless, but its a small preview :) In the future is should the mod a standartisation core for many other ore and technic mods/modpacks :) As well more items, blocks, machines, weapons & ores!
German Website: http://world-of-mine-company.jimdo.com/projekte/minecraft/mod-ore-core/
Planet Minecraft: http://www.planetminecraft.com/mod/rexs-ore-core/
MinecraftForum: http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/2466646-rex-s-ore-core#c2
Download
File Name | Status | Version | Downloads | Date |
---|---|---|---|---|
Ore Core v.0.2a for 1.8.x.jar | alpha | 1.8 | 700 | 11/08/2015 |
OreCore-1.12.2 -(v.1.4.1).jar | release | 1.12 | 3,315 | 22/02/2019 |
Ore Core v.0.3.0 for 1.8.9.jar | alpha | 1.8.9 | 592 | 20/02/2016 |
Ore Core 1.10.2 (v.1.3.4).jar | release | 1.10.2 | 11,505 | 27/07/2017 |
Ore Core 1.11.2 (v.1.3.4).jar | release | 1.11.2 | 7,616 | 27/07/2017 |
OreCore 1.12.2 (v.1.3.10).jar | release | 1.12.2 | 230 | 19/11/2018 |
Ore Core 1.20.2 | Updating | 1.20.2 | Updating | Updating |
Ore Core 1.20.1 | Updating | 1.20.1 | Updating | Updating |
Ore Core 1.20 | Updating | 1.20 | Updating | Updating |
Ore Core 1.19.2 | Updating | 1.19.2 | Updating | Updating |
Ore Core 1.19.1 | Updating | 1.19.1 | Updating | Updating |
Ore Core 1.19 | Updating | 1.19 | Updating | Updating |
Ore Core 1.18 | Updating | 1.18 | Updating | Updating |
Ore Core 1.17.1 | Updating | 1.17.1 | Updating | Updating |
Ore Core Forge | Updating | Forge | Updating | Updating |
Ore Core Fabric | Updating | Fabric | Updating | Updating |
Have you a channel youtube and want to bring your Video to quality visitors?
Do you want your video to appear on our website?
Do you want to become partner with us?
Just 3 steps to become our partner:
Step 1: Make video review for mods, addons, plugins, ... which you like
Step 2: Upload this video to youtube and our link to your video description
Step 3: Send the youtube video link via message to http://fb.com/9lifehack or leave a comment in the post. We will add your video in the our post, it will help you have more view.
JOIN to get more youtube view with us!!!!