Fixed some recipes and stuff
This commit is contained in:
parent
6e3ebabde9
commit
4981ddb3b4
10 changed files with 115 additions and 84 deletions
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"frame": "goal"
|
||||
},
|
||||
"parent": "biomesoplenty:biomesoplenty/root",
|
||||
"parent": "biomesoplenty:biomesoplenty/terrestrial_artifact",
|
||||
"criteria": {
|
||||
"biome_finder": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
|
|
|
@ -0,0 +1,107 @@
|
|||
{
|
||||
"display": {
|
||||
"icon": {
|
||||
"item": "biomesoplenty:terrestrial_artifact"
|
||||
},
|
||||
"title": {
|
||||
"translate": "advancements.biomesoplenty.terrestrial_artifact.title"
|
||||
},
|
||||
"description": {
|
||||
"translate": "advancements.biomesoplenty.terrestrial_artifact.description"
|
||||
},
|
||||
"frame": "goal"
|
||||
},
|
||||
"parent": "biomesoplenty:biomesoplenty/root",
|
||||
"criteria": {
|
||||
"ruby": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "biomesoplenty:gem",
|
||||
"data": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"topaz": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "biomesoplenty:gem",
|
||||
"data": 3
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"amber": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "biomesoplenty:gem",
|
||||
"data": 7
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"peridot": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "biomesoplenty:gem",
|
||||
"data": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"emerald": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "minecraft:emerald"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"malachite": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "biomesoplenty:gem",
|
||||
"data": 5
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"sapphire": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "biomesoplenty:gem",
|
||||
"data": 6
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"tanzanite": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "biomesoplenty:gem",
|
||||
"data": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"rewards": {
|
||||
"recipes": ["biomesoplenty:terrestrial_artifact"]
|
||||
}
|
||||
}
|
|
@ -16,8 +16,7 @@
|
|||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"type": "forge:ore_dict",
|
||||
"ore": "ballMud"
|
||||
"item": "biomesoplenty:mudball"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"type": "forge:ore_dict",
|
||||
"ore": "plantCattail"
|
||||
"item": "biomesoplenty:plant_1",
|
||||
"data": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"biomesoplenty:bamboo"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_gem_block": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "biomesoplenty:bamboo_thatching"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "biomesoplenty:bamboo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_gem_block",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
{
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"biomesoplenty:leaf_pile"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_leaves": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"type": "forge:ore_dict",
|
||||
"ore": "treeLeaves"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "biomesoplenty:leaf_pile"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_leaves",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -12,6 +12,8 @@ advancements.biomesoplenty.flesh_and_blood.title=Flesh and Blood
|
|||
advancements.biomesoplenty.flesh_and_blood.description=Harvest flesh from the Visceral Heap
|
||||
advancements.biomesoplenty.honey_hell.title=Honey Hell
|
||||
advancements.biomesoplenty.honey_hell.description=Steal some sweet honey from a Nether Wasp hive
|
||||
advancements.biomesoplenty.terrestrial_artifact.title=By Your Powers Combined
|
||||
advancements.biomesoplenty.terrestrial_artifact.description=Find all of the biome-exclusive gems!
|
||||
advancements.biomesoplenty.craft_biome_finder.title=Search Party
|
||||
advancements.biomesoplenty.craft_biome_finder.description=Craft a Biome Finder to guide your path
|
||||
advancements.biomesoplenty.all_biomes.title=Wanderer
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "biomesoplenty:bamboo_thatching",
|
||||
"data": 7
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "biomesoplenty:bamboo",
|
||||
"count": 4,
|
||||
"data": 0
|
||||
}
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"type": "forge:ore_shapeless",
|
||||
"group": "terrarium",
|
||||
"ingredients": [
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"type": "forge:ore_shapeless",
|
||||
"group": "terrarium",
|
||||
"ingredients": [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue