Earlier Versions
| Name | Size | Uploaded | Game Version | Downloads | |
| romimoco-ores-0.4.2.jar beta | 124.60 KB | Sep 10, 2018 | 1.12.2 | 2,418 | Download |
| romimoco-ores-0.4.1.jar beta | 124.18 KB | Aug 14, 2018 | 1.12.2 | 129 | Download |
| romimoco-ores-0.4.0.jar beta | 124.12 KB | Jul 4, 2018 | 1.12.2 | 220 | Download |
| romimoco-ores-0.3.2.jar beta | 122.64 KB | Apr 22, 2018 | 1.12.2 | 277 | Download |
| romimoco-ores-0.3.1.jar beta | 122.76 KB | Mar 6, 2018 | 1.12.2 | 199 | Download |
| romimoco-ores-0.3.0.jar beta | 120.23 KB | Jan 18, 2018 | 1.12.2 | 4,631 | Download |
| romimoco-ores-0.2.2.jar beta | 108.18 KB | Oct 28, 2017 | 1.12.2 | 3,124 | Download |
| romimoco-ores-0.2.1.jar beta | 102.29 KB | Oct 17, 2017 | 1.12.2 | 99 | Download |
| romimoco-ores-0.2.0-1.12.1-final.jar beta | 102.12 KB | Oct 13, 2017 | 1.12.1 | 948 | Download |
| romimoco-ores-0.2.0.jar beta | 102.12 KB | Oct 12, 2017 | 1.12.2 | 372 | Download |
| romimoco-ores-0.1.3.jar alpha | 64.28 KB | Sep 27, 2017 | 1.12.1 | 459 | Download |
| romimoco-ores-0.1.2.jar alpha | 65.82 KB | Aug 25, 2017 | 1.12.1 | 184 | Download |
| romimoco-ores-0.1.1.jar alpha | 66.62 KB | Aug 21, 2017 | 1.12.1 | 61 | Download |
| romimoco-ores-0.1.jar alpha | 65.63 KB | Aug 17, 2017 | 1.12.1 | 76 | Download |
Description
Romimoco-Ores is a mini mod to simplify adding custom ores to minecraft. There are two types of ores that can be added to the game, Ores and Gems.
Wiki (In Progress)
Ores:
- Drops itself when mined
- Smelts into an ingot
- Variants smelt into variant ingots
- Will generate Ore, Ingots, Block, Tools, Armor, Dusts (based on config entries)
Gems ( >= v0.2.0)
- Drops an Item when mined
- Unsmeltable (currently)
- Drops can be custom defined or a string such as "minecraft:diamond"
- Will generate Ore, Drops (if custom defined)
- If the Drop type is "gem", Tools, Armor, and Blocks will be generated.
- Custom Drops can have a BurnTime, which is the number of ticks they will burn in a furnace for.
- The "cut" of a custom drop will define what it looks like. Options are ball, chunk1, chunk2, crystal, rhomboid, round, square, teardrop, and trilliant.
To generate these blocks and items, simply create an oreDefinitions.json in your config/Romimoco/ores directory.
An oreDefinitions.json looks like this:
{
"OreList": [
{
"Name" : "iron",
"Color": "0xF3D1BB",
"Hardness":"3",
"Harvestlevel":"2",
"Generation":{
"MinY": 5,
"MaxY": 67,
"SpawnChance": 5,
"VeinSize": 12
},
"ItemStats": {
"Efficiency": 10.0,
"Damage": 2,
"ArmorClass": 1,
"Toughness": 0,
"Enchantability": 9,
"DurabilityMod": 15
}
},
{
"Name" : "gold",
"Color": "0xFFEE00",
"Hardness":"2",
"Harvestlevel":"2",
"Generation":{
"MinY": 5,
"MaxY": 34,
"SpawnChance": 3,
"VeinSize": 8
},
"ItemStats": {
"Efficiency": 8.0,
"Damage": 3,
"ArmorClass": 1,
"Toughness": 2,
"Enchantability": 10,
"DurabilityMod": 7
}
}
],
"GemList":[
{
"Name" : "diamond",
"Color": "0x1589ff",
"Hardness":"4.5",
"Harvestlevel":"3",
"Drops":"minecraft:diamond",
"Generation":{
"Rarities":{
"Poor":50,
"Low":25,
"Moderate":10,
"High":10,
"Rich":5
},
"MinY": 5,
"MaxY": 16,
"SpawnChance": 5,
"VeinSize": 8
},
"ItemStats": {
"Efficiency": 12.0,
"Damage": 0,
"ArmorClass": 1,
"Toughness": 0,
"Enchantability": 10,
"DurabilityMod": 33
}
},
{
"Name" : "emerald",
"Color": "0x00FF00",
"Hardness":"4.5",
"Harvestlevel":"3",
"Drops":"minecraft:emerald",
"Generation":{
"MinY": 5,
"MaxY": 32,
"SpawnChance": 5,
"VeinSize": 4,
"Biomes": [
"extreme_hills",
"smaller_extreme_hills",
"extreme_hills_with_trees",
"mutated_extreme_hills",
"mutated_extreme_hills_with_trees"
]
}
},
{
"Name" : "coal",
"Color": "0x000000",
"Hardness":"1",
"Harvestlevel":"1",
"Drops":"minecraft:coal",
"Generation":{
"MinY": 5,
"MaxY": 132,
"SpawnChance": 5,
"VeinSize": 24
}
},
{
"Name" : "lapis",
"Color": "0x0000FF",
"Hardness":"3",
"Harvestlevel":"2",
"Drops":"minecraft:dye/4",
"Generation":{
"MinY": 14,
"MaxY": 34,
"SpawnChance": 5,
"VeinSize": 12
}
},
{
"Name": "redstone",
"Color": "0xFF0000",
"Hardness": "3",
"Harvestlevel": "3",
"Drops": "minecraft:redstone",
"Generation": {
"MinY": 5,
"MaxY": 16,
"SpawnChance": 5,
"VeinSize": 12
}
},
{
"Name" : "ruby",
"Color": "0xff0000",
"Hardness":"2.2",
"Harvestlevel":"4",
"Drops":{
"Type":"gem",
"Cut":"round"
}
}
]
}
<br /><br />
Get 0.05 TON 💎
Download

Add a comment