Skip to content

Commit

Permalink
snowflake banner pattern recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDeathlyCow committed Dec 9, 2023
1 parent 052887b commit d04d043
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@ public class FItemGroups {
entries.add(new ItemStack(FItems.CUT_BLUE_ICE_SLAB));
entries.add(new ItemStack(FItems.CUT_BLUE_ICE_WALL));

entries.add(new ItemStack(FItems.FROSTOLOGER_SPAWN_EGG));
entries.add(new ItemStack(FItems.CHILLAGER_SPAWN_EGG));
entries.add(new ItemStack(FItems.BITER_SPAWN_EGG));

entries.add(new ItemStack(FItems.FUR_UPGRADE_TEMPLATE));
entries.add(new ItemStack(FItems.ICE_SKATE_UPGRADE_TEMPLATE));
entries.add(new ItemStack(FItems.FROSTY_ARMOR_TRIM_SMITHING_TEMPLATE));
Expand All @@ -69,6 +65,10 @@ public class FItemGroups {
entries.add(new ItemStack(FItems.ICICLE));
entries.add(new ItemStack(FItems.FROST_TIPPED_ARROW));
entries.add(new ItemStack(FItems.FROZEN_TORCH));

entries.add(new ItemStack(FItems.FROSTOLOGER_SPAWN_EGG));
entries.add(new ItemStack(FItems.CHILLAGER_SPAWN_EGG));
entries.add(new ItemStack(FItems.BITER_SPAWN_EGG));
}).build();

public static void registerAll() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/frostiful/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
"advancements.frostiful.adventure.fur_armor.description": "Obtain a full suit of Fur Armor",
"advancements.frostiful.adventure.chain_fur_armor.title": "Chained Up",
"advancements.frostiful.adventure.chain_fur_armor.description": "Obtain a full suit of Fur Padded Chainmail Armor",
"advancements.frostiful.add_log_to_fire.title": "Timber on the Hearth",
"advancements.frostiful.add_log_to_fire.title": "Timber Hearth",
"advancements.frostiful.add_log_to_fire.desc": "Add a log to a campfire",
"advancements.frostiful.adventure.obtain_ice_skates.title": "Sword Shoes",
"advancements.frostiful.adventure.obtain_ice_skates.description": "Craft a pair of Ice Skates in the Smithing Table",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"frostiful:shapeless/snowflake_banner_pattern"
]
},
"criteria": {
"has_packed_snowball": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "frostiful:packed_snowball"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "frostiful:shapeless/snowflake_banner_pattern"
}
}
},
"requirements": [
[
"has_packed_snowball",
"has_the_recipe"
]
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:paper"
},
{
"item": "frostiful:packed_snowball"
}
],
"result": {
"item": "frostiful:snowflake_banner_pattern"
}
}

0 comments on commit d04d043

Please sign in to comment.