Skip to content

Commit

Permalink
Eye recipe shouldn't be unlocked that early!
Browse files Browse the repository at this point in the history
  • Loading branch information
kckarnige committed Aug 21, 2024
1 parent 685b016 commit 970b0b0
Show file tree
Hide file tree
Showing 4 changed files with 97 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ yarn_mappings=1.21+build.2
loader_version=0.15.11

# Mod Properties
mod_version=2.0.0
mod_version=2.0.1
maven_group=com.kckarnige
archives_base_name=openyoureye

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_dragon_breath": {
"conditions": {
"items": [
{
"items": "minecraft:dragon_breath"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "openyoureye:anti_end_matter"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_dragon_breath"
]
],
"rewards": {
"recipes": [
"openyoureye:anti_end_matter"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_nether_star": {
"conditions": {
"items": [
{
"items": "minecraft:nether_star"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "openyoureye:end_matter"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_nether_star"
]
],
"rewards": {
"recipes": [
"openyoureye:end_matter"
]
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_nether_star": {
"conditions": {
"items": [
{
"items": "minecraft:nether_star"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:ender_eye"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_nether_star"
]
],
"rewards": {
"recipes": [
"minecraft:ender_eye"
]
}
}

0 comments on commit 970b0b0

Please sign in to comment.