Crystal Entropy

This commit is contained in:
Vos
2025-11-18 20:30:04 -06:00
parent 841c1c50c5
commit f931d2f5e2
29 changed files with 368 additions and 3 deletions
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_stable_entropy": {
"conditions": {
"items": [
{
"items": "acesbs:stable_entropy"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:crystal_entropy_from_stable_and_glass"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_stable_entropy"
]
],
"rewards": {
"recipes": [
"acesbs:crystal_entropy_from_stable_and_glass"
]
}
}
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_crystal_entropy": {
"conditions": {
"items": [
{
"items": "acesbs:crystal_entropy"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:crystal_entropy_pane"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_crystal_entropy"
]
],
"rewards": {
"recipes": [
"acesbs:crystal_entropy_pane"
]
}
}
@@ -0,0 +1,32 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
}
],
"entries": [
{
"type": "minecraft:item",
"name": "acesbs:crystal_entropy"
}
],
"rolls": 1.0
}
]
}
@@ -0,0 +1,32 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
}
],
"entries": [
{
"type": "minecraft:item",
"name": "acesbs:crystal_entropy_pane"
}
],
"rolls": 1.0
}
]
}
@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "minecraft:glass"
},
"S": {
"item": "acesbs:stable_entropy"
}
},
"pattern": [
"###",
"#S#",
"###"
],
"result": {
"count": 8,
"id": "acesbs:crystal_entropy"
}
}
@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "acesbs:crystal_entropy"
}
},
"pattern": [
"###",
"###"
],
"result": {
"count": 16,
"id": "acesbs:crystal_entropy_pane"
}
}
@@ -15,7 +15,7 @@
"###"
],
"result": {
"count": 1,
"count": 4,
"id": "acesbs:oracle_lemon"
}
}
@@ -0,0 +1,6 @@
{
"values": [
"acesbs:crystal_entropy",
"acesbs:crystal_entropy_pane"
]
}