Part 1 of reimplementing Ritual Diviner
Finished the placement of the Ritual Stones from the ItemRitualDiviner. Still need to finish the rendering system for the ghost blocks.
This commit is contained in:
parent
446fe9cef7
commit
85e47dbfa8
40 changed files with 1486 additions and 11 deletions
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"bloodmagic:ritual_stone_blank"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_apprentice_orb": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "bloodmagic:apprenticebloodorb"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "bloodmagic:ritual_stone_blank"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_apprentice_orb",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"bloodmagic:ritual_stone_master"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_magician_orb": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "bloodmagic:magicianbloodorb"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "bloodmagic:ritual_stone_master"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_magician_orb",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"rolls": 1,
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "bloodmagic:masterritualstone"
|
||||
}
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "bloodmagic:altar",
|
||||
"input": {
|
||||
"item": "minecraft:ghast_tear"
|
||||
},
|
||||
"output": {
|
||||
"item": "bloodmagic:airscribetool",
|
||||
"nbt": "{Damage:0}"
|
||||
},
|
||||
"upgradeLevel": 2,
|
||||
"altarSyphon": 1000,
|
||||
"consumptionRate": 5,
|
||||
"drainRate": 5
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "bloodmagic:altar",
|
||||
"input": {
|
||||
"tag": "forge:storage_blocks/coal"
|
||||
},
|
||||
"output": {
|
||||
"item": "bloodmagic:duskscribetool",
|
||||
"nbt": "{Damage:0}"
|
||||
},
|
||||
"upgradeLevel": 3,
|
||||
"altarSyphon": 2000,
|
||||
"consumptionRate": 20,
|
||||
"drainRate": 10
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "bloodmagic:altar",
|
||||
"input": {
|
||||
"tag": "forge:obsidian"
|
||||
},
|
||||
"output": {
|
||||
"item": "bloodmagic:earthscribetool",
|
||||
"nbt": "{Damage:0}"
|
||||
},
|
||||
"upgradeLevel": 2,
|
||||
"altarSyphon": 1000,
|
||||
"consumptionRate": 5,
|
||||
"drainRate": 5
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "bloodmagic:altar",
|
||||
"input": {
|
||||
"item": "minecraft:magma_cream"
|
||||
},
|
||||
"output": {
|
||||
"item": "bloodmagic:firescribetool",
|
||||
"nbt": "{Damage:0}"
|
||||
},
|
||||
"upgradeLevel": 2,
|
||||
"altarSyphon": 1000,
|
||||
"consumptionRate": 5,
|
||||
"drainRate": 5
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "bloodmagic:altar",
|
||||
"input": {
|
||||
"tag": "forge:storage_blocks/lapis"
|
||||
},
|
||||
"output": {
|
||||
"item": "bloodmagic:waterscribetool",
|
||||
"nbt": "{Damage:0}"
|
||||
},
|
||||
"upgradeLevel": 2,
|
||||
"altarSyphon": 1000,
|
||||
"consumptionRate": 5,
|
||||
"drainRate": 5
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"aba",
|
||||
"bcb",
|
||||
"aba"
|
||||
],
|
||||
"key": {
|
||||
"a": {
|
||||
"tag": "forge:obsidian"
|
||||
},
|
||||
"b": {
|
||||
"item": "bloodmagic:reinforcedslate"
|
||||
},
|
||||
"c": {
|
||||
"type": "bloodmagic:bloodorb",
|
||||
"orb_tier": 2
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "bloodmagic:ritualstone",
|
||||
"count": 4
|
||||
}
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"aba",
|
||||
"bcb",
|
||||
"aba"
|
||||
],
|
||||
"key": {
|
||||
"a": {
|
||||
"tag": "forge:obsidian"
|
||||
},
|
||||
"b": {
|
||||
"item": "bloodmagic:ritualstone"
|
||||
},
|
||||
"c": {
|
||||
"type": "bloodmagic:bloodorb",
|
||||
"orb_tier": 3
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "bloodmagic:masterritualstone"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue