Framework for ARC
Initial framework for the ARC block, including GUI, Container, Tile Entity, and Block.
This commit is contained in:
parent
2a8143844a
commit
ec1b0644cb
32 changed files with 847 additions and 70 deletions
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"bloodmagic:ritual_diviner_0"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_scribe": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "bloodmagic:airscribetool"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "bloodmagic:ritual_diviner_0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_scribe",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"bloodmagic:ritual_diviner_1"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_demon_slate": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"item": "bloodmagic:demonslate"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "bloodmagic:ritual_diviner_1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_demon_slate",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"rolls": 1,
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "bloodmagic:alchemicalreactionchamber"
|
||||
}
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"dfd",
|
||||
"ase",
|
||||
"dwd"
|
||||
],
|
||||
"key": {
|
||||
"a": {
|
||||
"item": "bloodmagic:airscribetool"
|
||||
},
|
||||
"s": {
|
||||
"tag": "forge:rods/wooden"
|
||||
},
|
||||
"d": {
|
||||
"tag": "forge:gems/diamond"
|
||||
},
|
||||
"e": {
|
||||
"item": "bloodmagic:earthscribetool"
|
||||
},
|
||||
"f": {
|
||||
"item": "bloodmagic:firescribetool"
|
||||
},
|
||||
"w": {
|
||||
"item": "bloodmagic:waterscribetool"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "bloodmagic:ritualdiviner"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" S ",
|
||||
"tdt",
|
||||
" S "
|
||||
],
|
||||
"key": {
|
||||
"S": {
|
||||
"item": "bloodmagic:demonslate"
|
||||
},
|
||||
"t": {
|
||||
"item": "bloodmagic:duskscribetool"
|
||||
},
|
||||
"d": {
|
||||
"item": "bloodmagic:ritualdiviner"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "bloodmagic:ritualdivinerdusk"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "bloodmagic:altar",
|
||||
"input": {
|
||||
"item": "bloodmagic:lavacrystal"
|
||||
},
|
||||
"output": {
|
||||
"item": "bloodmagic:activationcrystalweak"
|
||||
},
|
||||
"upgradeLevel": 2,
|
||||
"altarSyphon": 10000,
|
||||
"consumptionRate": 20,
|
||||
"drainRate": 10
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue