Skip to content

Commit

Permalink
Remove Milk from Allium Oddion Soup Recipe, Change Nutrition value fr…
Browse files Browse the repository at this point in the history
…om 9 to 8

Signed-off-by: Joseph T. McQuigg <[email protected]>
  • Loading branch information
JT122406 committed Jan 13, 2025
1 parent ce1a918 commit 09c1d77
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 2.3.2
- Remove Milk from Allium Oddion Soup Recipe, Change Nutrition value from 9 to 8

# 2.3.1
- Add Missing Spanish (Chile) Language Keys
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,14 @@
"category": "misc",
"key": {
"#": {
"item": "minecraft:milk_bucket"
"item": "biomeswevegone:cooked_oddion_bulb"
},
"X": {
"item": "minecraft:bowl"
},
"Y": {
"item": "biomeswevegone:cooked_oddion_bulb"
}
},
"pattern": [
"#Y",
"##",
"X "
],
"result": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class BWGItems {

public static final Supplier<Item> ODDION_BULB = registerSimpleItem("oddion_bulb", () -> new ItemNameBlockItem(BWGBlocks.ODDION_CROP.get(), new Item.Properties().food(new FoodProperties.Builder().nutrition(2).saturationModifier(0.35f).build())));
public static final Supplier<Item> COOKED_ODDION_BULB = registerSimpleItem("cooked_oddion_bulb", () -> new Item(new Item.Properties().food(new FoodProperties.Builder().nutrition(5).saturationModifier(0.5f).build())));
public static final Supplier<Item> ALLIUM_ODDION_SOUP = registerSimpleItem("allium_oddion_soup", () -> new Item((new Item.Properties()).stacksTo(1).food((new FoodProperties.Builder()).nutrition(9).saturationModifier(1f).usingConvertsTo(Items.BOWL).build())));
public static final Supplier<Item> ALLIUM_ODDION_SOUP = registerSimpleItem("allium_oddion_soup", () -> new Item((new Item.Properties()).stacksTo(1).food((new FoodProperties.Builder()).nutrition(8).saturationModifier(1f).usingConvertsTo(Items.BOWL).build())));
public static final Supplier<Item> BLOOMING_ODDION = registerSimpleItem("blooming_oddion", () -> new Item(new Item.Properties().food(new FoodProperties.Builder().nutrition(9).saturationModifier(1.2f).build())));

public static final Supplier<Item> WHITE_PUFFBALL_SPORES = registerSimpleItem("white_puffball_spores", () -> new ItemNameBlockItem(BWGBlocks.WHITE_PUFFBALL.getBlock(), new Item.Properties()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,9 @@ protected void buildRecipes(@NotNull RecipeOutput recipeOutput) {
.save(recipeOutput, BiomesWeveGone.id("cooked_oddion_bulb_from_smoker"));

ShapedRecipeBuilder.shaped(RecipeCategory.FOOD, BWGItems.ALLIUM_ODDION_SOUP.get())
.define('#', Items.MILK_BUCKET)
.define('#', BWGItems.COOKED_ODDION_BULB.get())
.define('X', Items.BOWL)
.define('Y', BWGItems.COOKED_ODDION_BULB.get())
.pattern("#Y")
.pattern("##")
.pattern("X ")
.unlockedBy(getHasName(BWGItems.COOKED_ODDION_BULB.get()), has(BWGItems.COOKED_ODDION_BULB.get()))
.save(recipeOutput);
Expand Down

0 comments on commit 09c1d77

Please sign in to comment.