Skip to content

Commit

Permalink
Edited some spawn biomes
Browse files Browse the repository at this point in the history
Edited some recipes
Added ominous claw recipe
Adjusted food values of fish items
  • Loading branch information
MysticKoko committed Feb 4, 2024
1 parent 92cefaf commit 78e8917
Show file tree
Hide file tree
Showing 12 changed files with 728 additions and 32 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_crab_claw": {
"has_coconut_crab_claw": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:coconut_crab_claw"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_dungeness_crab_claw": {
"conditions": {
"items": [
{
Expand All @@ -13,16 +25,121 @@
},
"trigger": "minecraft:inventory_changed"
},
"has_fiddler_crab_claw": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:fiddler_crab_claw"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_flower_crab_claw": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:flower_crab_claw"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_ghost_crab_claw": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:ghost_crab_claw"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_lightfoot_crab_claw": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:lightfoot_crab_claw"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_lobster_claw": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:lobster_claw"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_spider_crab_claw": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:spider_crab_claw"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "hybrid-aquatic:raw_crab"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_vampire_crab_claw": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:vampire_crab_claw"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_yeti_crab_claw": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:yeti_crab_claw"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_crab_claw",
"has_dungeness_crab_claw",
"has_coconut_crab_claw",
"has_spider_crab_claw",
"has_vampire_crab_claw",
"has_yeti_crab_claw",
"has_ghost_crab_claw",
"has_lightfoot_crab_claw",
"has_flower_crab_claw",
"has_fiddler_crab_claw",
"has_lobster_claw",
"has_the_recipe"
]
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,132 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_fish_meat": {
"has_anglerfish": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:raw_fish_meat"
"hybrid-aquatic:anglerfish"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_barreleye": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:barreleye"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_blue_spotted_stingray": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:blue_spotted_stingray"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_blue_tang": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:blue_tang"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_clownfish": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:clownfish"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_cowfish": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:cowfish"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_lionfish": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:lionfish"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_needlefish": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:needlefish"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_oscar": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:oscar"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_piranha": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:piranha"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_rockfish": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:rockfish"
]
}
]
Expand All @@ -18,11 +138,47 @@
"recipe": "hybrid-aquatic:raw_fish_meat"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_tiger_barb": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:tiger_barb"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_unicorn_fish": {
"conditions": {
"items": [
{
"items": [
"hybrid-aquatic:unicorn_fish"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_fish_meat",
"has_lionfish",
"has_rockfish",
"has_blue_spotted_stingray",
"has_needlefish",
"has_clownfish",
"has_blue_tang",
"has_barreleye",
"has_anglerfish",
"has_piranha",
"has_unicorn_fish",
"has_cowfish",
"has_tiger_barb",
"has_oscar",
"has_the_recipe"
]
],
Expand Down
Loading

0 comments on commit 78e8917

Please sign in to comment.