recipe corrections (better game balance)
This commit is contained in:
parent
3e5f657092
commit
1e514bca11
@ -25,14 +25,14 @@ public class EmptyLavaHoarderBlockEntity extends BlockEntity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static final void spawnRandomItems(World world, BlockPos pos, Integer count) {
|
public static final void spawnRandomItems(World world, BlockPos pos, Integer count) {
|
||||||
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.DIAMOND, new Random().nextInt(count))));
|
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.DIAMOND, new Random().nextInt(count + 2))));
|
||||||
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.EMERALD, new Random().nextInt(count))));
|
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.EMERALD, new Random().nextInt(count + 1))));
|
||||||
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.GOLD_ORE, new Random().nextInt(count))));
|
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.RAW_GOLD, new Random().nextInt(count))));
|
||||||
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.IRON_ORE, new Random().nextInt(count))));
|
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.RAW_IRON, new Random().nextInt(count))));
|
||||||
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.COPPER_ORE, new Random().nextInt(count))));
|
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.RAW_COPPER, new Random().nextInt(count))));
|
||||||
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.OBSIDIAN, new Random().nextInt(count))));
|
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.OBSIDIAN, new Random().nextInt(count + 2))));
|
||||||
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.LAPIS_LAZULI, new Random().nextInt(count))));
|
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(Items.LAPIS_LAZULI, new Random().nextInt(count + 1))));
|
||||||
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(QuickieItems.SULPHOR, new Random().nextInt(count))));
|
world.spawnEntity(new ItemEntity(world, pos.getX(), pos.getY(), pos.getZ(), new ItemStack(QuickieItems.SULPHOR, new Random().nextInt(count - 1))));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"s": {
|
"s": {
|
||||||
"item": "quickiefabric:speedpowder"
|
"item": "quickiefabric:speedingot"
|
||||||
},
|
},
|
||||||
"c": {
|
"c": {
|
||||||
"item": "minecraft:chest"
|
"item": "minecraft:chest"
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"sss",
|
"q q",
|
||||||
"srs",
|
"dqd",
|
||||||
"sss"
|
" d "
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"s": {
|
"q": {
|
||||||
"item": "quickiefabric:speedpowder"
|
"item": "quickiefabric:quickieingot"
|
||||||
},
|
},
|
||||||
"r": {
|
"d": {
|
||||||
"item": "minecraft:redstone_block"
|
"item": "minecraft:diamond"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"sss",
|
"ooo",
|
||||||
"srs",
|
"oso",
|
||||||
"sss"
|
"ooo"
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"s": {
|
"s": {
|
||||||
"item": "quickiefabric:speedpowder"
|
"item": "quickiefabric:speedingot"
|
||||||
},
|
},
|
||||||
"r": {
|
"o": {
|
||||||
"item": "minecraft:obsidian"
|
"item": "minecraft:obsidian"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -2,15 +2,15 @@
|
|||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"ooo",
|
"ooo",
|
||||||
"oso",
|
"obo",
|
||||||
"ooo"
|
"ooo"
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"o": {
|
"o": {
|
||||||
"item": "minecraft:obsidian"
|
"item": "minecraft:obsidian"
|
||||||
},
|
},
|
||||||
"s": {
|
"b": {
|
||||||
"item": "quickiefabric:speedpowder"
|
"item": "minecraft:bucket"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"result": {
|
"result": {
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:crafting_shapeless",
|
"type": "minecraft:smithing_trim",
|
||||||
"ingredients": [
|
"template": {
|
||||||
{
|
"item": "minecraft:magma_block"
|
||||||
"item": "minecraft:bucket"
|
},
|
||||||
},
|
"base": {
|
||||||
{
|
"item": "minecraft:bucket"
|
||||||
"item": "minecraft:magma_block"
|
},
|
||||||
}
|
"addition": {
|
||||||
],
|
"item": "minecraft:torch"
|
||||||
"result": {
|
},
|
||||||
"item": "minecraft:lava_bucket",
|
"result": {
|
||||||
"count": 1
|
"item": "minecraft:lava_bucket"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,15 +1,15 @@
|
|||||||
{
|
{
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"ooo",
|
"qqq",
|
||||||
"oso",
|
"qtq",
|
||||||
"ooo"
|
"qqq"
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"o": {
|
"q": {
|
||||||
"item": "quickiefabric:speedpowder"
|
"item": "quickiefabric:quickieingot"
|
||||||
},
|
},
|
||||||
"s": {
|
"t": {
|
||||||
"item": "minecraft:torch"
|
"item": "minecraft:torch"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user