diff --git a/bukkit-loader/src/main/resources/resources/default/configuration/templates.yml b/bukkit-loader/src/main/resources/resources/default/configuration/templates.yml index 42161181f..d8c84f87f 100644 --- a/bukkit-loader/src/main/resources/resources/default/configuration/templates.yml +++ b/bukkit-loader/src/main/resources/resources/default/configuration/templates.yml @@ -33,9 +33,31 @@ templates#models#block: textures: "end": "{end_texture}" "side": "{side_texture}" + # template: default:model/cube + # arguments: + # model: model_path + # particle_texture: particle_texture_path + # down_texture: down_texture_path + # up_texture: up_texture_path + # north_texture: north_texture_path + # east_texture: east_texture_path + # south_texture: south_texture_path + # west_texture: west_texture_path + default:model/cube: + path: "{model}" + generation: + parent: "minecraft:block/cube_column" + textures: + "particle": "minecraft:block/custom/block_particle" + "down": "minecraft:block/custom/block_down" + "up": "minecraft:block/custom/block_up" + "north": "minecraft:block/custom/block_north" + "east": "minecraft:block/custom/block_east" + "south": "minecraft:block/custom/block_south" + "west": "minecraft:block/custom/block_west" # 2D items -templates#models#generated: +templates#models#2d: # template: default:model/generated # arguments: # model: model_path diff --git a/core/src/main/java/net/momirealms/craftengine/core/item/recipe/CustomSmithingTransformRecipe.java b/core/src/main/java/net/momirealms/craftengine/core/item/recipe/CustomSmithingTransformRecipe.java new file mode 100644 index 000000000..fb74a8767 --- /dev/null +++ b/core/src/main/java/net/momirealms/craftengine/core/item/recipe/CustomSmithingTransformRecipe.java @@ -0,0 +1,4 @@ +package net.momirealms.craftengine.core.item.recipe; + +public class CustomSmithingTransformRecipe { +} diff --git a/core/src/main/java/net/momirealms/craftengine/core/item/recipe/RecipeTypes.java b/core/src/main/java/net/momirealms/craftengine/core/item/recipe/RecipeTypes.java index e350f5111..fb81f5678 100644 --- a/core/src/main/java/net/momirealms/craftengine/core/item/recipe/RecipeTypes.java +++ b/core/src/main/java/net/momirealms/craftengine/core/item/recipe/RecipeTypes.java @@ -17,6 +17,7 @@ public class RecipeTypes { public static final Key SMOKING = Key.of("minecraft:smoking"); public static final Key CAMPFIRE_COOKING = Key.of("minecraft:campfire_cooking"); public static final Key STONE_CUTTING = Key.of("minecraft:stone_cutting"); + public static final Key SMITHING_TRANSFORM = Key.of("minecraft:smithing_transform"); static { register(SHAPED, CustomShapedRecipe.FACTORY); diff --git a/gradle.properties b/gradle.properties index fbc8cbd28..4d87c25e8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -38,7 +38,7 @@ geantyref_version=1.3.16 zstd_version=1.5.6-9 commons_io_version=2.17.0 sparrow_nbt_version=0.3 -sparrow_util_version=0.22 +sparrow_util_version=0.23 fastutil_version=8.5.15 netty_version=4.1.119.Final joml_version=1.10.8