Skip to content

Commit

Permalink
change recipes to vanilla components recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
fayer3 committed Jul 20, 2024
1 parent 349b232 commit 2dd64ae
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 99 deletions.
65 changes: 0 additions & 65 deletions common/src/main/java/org/vivecraft/common/CustomShapedRecipe.java

This file was deleted.

This file was deleted.

14 changes: 8 additions & 6 deletions common/src/main/resources/data/vivecraft/recipes/climbclaws.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@
}
},
"result": {
"item": "vivecraft:climbclaws",
"vanillaitem": "minecraft:shears",
"name": "vivecraft.item.climbclaws",
"fallbackname": "Climb Claws",
"hideflags": 4,
"unbreakable": true
"id": "minecraft:shears",
"count": 1,
"components": {
"minecraft:unbreakable": {
"show_in_tooltip": false
},
"minecraft:custom_name": "{\"type\": \"translatable\", \"translate\": \"vivecraft.item.climbclaws\", \"fallback\": \"Climb Claws\"}"
}
}
}
19 changes: 12 additions & 7 deletions common/src/main/resources/data/vivecraft/recipes/jumpboots.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,17 @@
}
},
"result": {
"item": "vivecraft:jumpboots",
"vanillaitem": "minecraft:leather_boots",
"name": "vivecraft.item.jumpboots",
"fallbackname": "Jump Boots",
"hideflags": 4,
"unbreakable": true,
"color": 9233775
"id": "minecraft:leather_boots",
"count": 1,
"components": {
"minecraft:unbreakable": {
"show_in_tooltip": false
},
"minecraft:custom_name": "{\"type\": \"translatable\", \"translate\": \"vivecraft.item.jumpboots\", \"fallback\": \"Jump Boots\"}",
"minecraft:dyed_color": {
"rgb": 9233775,
"show_in_tooltip": false
}
}
}
}
3 changes: 1 addition & 2 deletions common/src/main/resources/vivecraft.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@
"world.entity.projectile.ProjectileMixin",
"world.entity.projectile.ThrowableProjectileMixin",
"world.entity.projectile.ThrownTridentMixin",
"world.item.CrossbowItemMixin",
"world.item.crafting.ShapedRecipeMixin"
"world.item.CrossbowItemMixin"
]
}

0 comments on commit 2dd64ae

Please sign in to comment.