Added all recipes

This commit is contained in:
Pasha Bibko
2026-04-28 11:05:02 +01:00
parent ba386f4c88
commit 5e7507058b
4 changed files with 128 additions and 26 deletions

View File

@@ -21,13 +21,60 @@ namespace Fruitomation.Game
}
}
private static Recipe[] Recipes = new Recipe[1]
private static Recipe[] Recipes =
{
new
(
new[] { ItemType.Apple, ItemType.Grape },
ItemType.Banana
new[]
{
ItemType.DriedAppleSlices,
ItemType.Raisins,
ItemType.DriedBananaSlices
},
ItemType.DriedFruitSelection
),
new
(
new[]
{
ItemType.AppleJuice,
ItemType.MangoJuice
},
ItemType.AppleAndMangoJuice
),
new
(
new[]
{
ItemType.BananaIceCream,
ItemType.DurainPowder
},
ItemType.SpicedBananaIceCream
),
new
(
new[]
{
ItemType.SlicedKiwi,
ItemType.MangoSlices,
ItemType.DurianSlices,
ItemType.BuddhasHandSlices
},
ItemType.ExoticFruitSelection
),
new
(
new[]
{
ItemType.PitayaIceCream,
ItemType.DurainPowder
},
ItemType.SpicedPitayaIceCream
)
};
[Header("Mixer Specific")]