Added a few recipes

These include the Bloodstone Brick and a way to get the Weak Blood Shard! Yay!
Now if only the ARC was obtainable yet, lol.
This commit is contained in:
WayofTime 2020-10-30 17:56:25 -04:00
parent 1ead4ff820
commit 37c5e807b0
22 changed files with 213 additions and 2 deletions

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"bloodmagic:bloodstonebrick"
]
},
"criteria": {
"has_weak_shard": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "bloodmagic:weakbloodshard"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "bloodmagic:bloodstonebrick"
}
}
},
"requirements": [
[
"has_weak_shard",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"bloodmagic:largebloodstonebrick"
]
},
"criteria": {
"has_weak_shard": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "bloodmagic:weakbloodshard"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "bloodmagic:largebloodstonebrick"
}
}
},
"requirements": [
[
"has_weak_shard",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "bloodmagic:bloodstonebrick"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "bloodmagic:largebloodstonebrick"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -0,0 +1,13 @@
{
"type": "bloodmagic:altar",
"input": {
"item": "bloodmagic:weakbloodshard"
},
"output": {
"item": "bloodmagic:masterbloodorb"
},
"upgradeLevel": 3,
"altarSyphon": 40000,
"consumptionRate": 30,
"drainRate": 50
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"ss",
"ss"
],
"key": {
"s": {
"item": "bloodmagic:largebloodstonebrick"
}
},
"result": {
"item": "bloodmagic:bloodstonebrick",
"count": 4
}
}

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"tag": "forge:stone"
},
{
"item": "bloodmagic:weakbloodshard"
}
],
"result": {
"item": "bloodmagic:largebloodstonebrick",
"count": 8
}
}