Merge pull request #1386 from ToMe25/ToMe25-patch-1

Add Gem Blocks to OreDictionary and change Gem Recipes to use OreDict…
This commit is contained in:
Forstride 2019-05-25 04:00:57 -04:00 committed by GitHub
commit 67fd35ad17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 51 additions and 50 deletions

View File

@ -145,6 +145,7 @@ public class ModCrafting
String gemName = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, gem.name());
OreDictionary.registerOre("gem"+gemName, new ItemStack(BOPItems.gem, 1, gem.ordinal()));
OreDictionary.registerOre("ore"+gemName, new ItemStack(BOPBlocks.gem_ore , 1, gem.ordinal()));
OreDictionary.registerOre("block"+gemName, new ItemStack(BOPBlocks.gem_block, 1, gem.ordinal()));
}
for (BOPFlowers flower : BOPFlowers.values())

View File

@ -2,8 +2,8 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "biomesoplenty:gem_block",
"data": 7
"type": "forge:ore_dict",
"ore": "blockAmber"
}
],
"result": {

View File

@ -7,8 +7,8 @@
],
"key": {
"#": {
"item": "biomesoplenty:gem",
"data": 7
"type": "forge:ore_dict",
"ore": "gemAmber"
}
},
"result": {

View File

@ -2,8 +2,8 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "biomesoplenty:gem_block",
"data": 0
"type": "forge:ore_dict",
"ore": "blockAmethyst"
}
],
"result": {

View File

@ -7,8 +7,8 @@
],
"key": {
"#": {
"item": "biomesoplenty:gem",
"data": 0
"type": "forge:ore_dict",
"ore": "gemAmethyst"
}
},
"result": {

View File

@ -7,8 +7,8 @@
],
"key": {
"#": {
"item": "biomesoplenty:gem",
"data": 0
"type": "forge:ore_dict",
"ore": "gemAmethyst"
},
"T": {
"item": "biomesoplenty:terrestrial_artifact"

View File

@ -2,8 +2,8 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "biomesoplenty:gem_block",
"data": 5
"type": "forge:ore_dict",
"ore": "blockMalachite"
}
],
"result": {

View File

@ -7,8 +7,8 @@
],
"key": {
"#": {
"item": "biomesoplenty:gem",
"data": 5
"type": "forge:ore_dict",
"ore": "gemMalachite"
}
},
"result": {

View File

@ -2,8 +2,8 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "biomesoplenty:gem_block",
"data": 2
"type": "forge:ore_dict",
"ore": "blockPeridot"
}
],
"result": {

View File

@ -7,8 +7,8 @@
],
"key": {
"#": {
"item": "biomesoplenty:gem",
"data": 2
"type": "forge:ore_dict",
"ore": "gemPeridot"
}
},
"result": {

View File

@ -2,8 +2,8 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "biomesoplenty:gem_block",
"data": 1
"type": "forge:ore_dict",
"ore": "blockRuby"
}
],
"result": {

View File

@ -7,8 +7,8 @@
],
"key": {
"#": {
"item": "biomesoplenty:gem",
"data": 1
"type": "forge:ore_dict",
"ore": "gemRuby"
}
},
"result": {

View File

@ -2,8 +2,8 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "biomesoplenty:gem_block",
"data": 6
"type": "forge:ore_dict",
"ore": "blockSapphire"
}
],
"result": {

View File

@ -7,8 +7,8 @@
],
"key": {
"#": {
"item": "biomesoplenty:gem",
"data": 6
"type": "forge:ore_dict",
"ore": "gemSapphire"
}
},
"result": {

View File

@ -2,8 +2,8 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "biomesoplenty:gem_block",
"data": 4
"type": "forge:ore_dict",
"ore": "blockTanzanite"
}
],
"result": {

View File

@ -7,8 +7,8 @@
],
"key": {
"#": {
"item": "biomesoplenty:gem",
"data": 4
"type": "forge:ore_dict",
"ore": "gemTanzanite"
}
},
"result": {

View File

@ -2,36 +2,36 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "biomesoplenty:gem",
"data": 1
"type": "forge:ore_dict",
"ore": "gemRuby"
},
{
"item": "biomesoplenty:gem",
"data": 3
"type": "forge:ore_dict",
"ore": "gemTopaz"
},
{
"item": "biomesoplenty:gem",
"data": 7
"type": "forge:ore_dict",
"ore": "gemAmber"
},
{
"item": "biomesoplenty:gem",
"data": 2
"type": "forge:ore_dict",
"ore": "gemPeridot"
},
{
"item": "biomesoplenty:gem",
"data": 5
"type": "forge:ore_dict",
"ore": "gemMalachite"
},
{
"item": "biomesoplenty:gem",
"data": 6
"type": "forge:ore_dict",
"ore": "gemSapphire"
},
{
"item": "biomesoplenty:gem",
"data": 4
"type": "forge:ore_dict",
"ore": "gemTanzanite"
},
{
"item": "minecraft:emerald",
"data": 32767
"type": "forge:ore_dict",
"ore": "gemEmerald"
}
],
"result": {

View File

@ -2,8 +2,8 @@
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "biomesoplenty:gem_block",
"data": 3
"type": "forge:ore_dict",
"ore": "blockTopaz"
}
],
"result": {

View File

@ -7,8 +7,8 @@
],
"key": {
"#": {
"item": "biomesoplenty:gem",
"data": 3
"type": "forge:ore_dict",
"ore": "gemTopaz"
}
},
"result": {