From 86b355862e38ff7a16c24aa2bd6df2ee9b0e5480 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Thu, 5 Sep 2024 20:31:38 +0200 Subject: [PATCH] Update --- main.go | 88 +++++++++++++++++++++++++++++++-------------------------- 1 file changed, 48 insertions(+), 40 deletions(-) diff --git a/main.go b/main.go index 213b0a9..d213add 100644 --- a/main.go +++ b/main.go @@ -16,60 +16,68 @@ type ingredient struct { const ( bakingPowder = 92 beans = 100 + beetroot = 43 butter = 774 butter2 = 630 // Cake butter thing that's not real butter - carrot = 35 - chickenBreast = 98 - cocoa = 363 - egg = 150 - flour = 338 - hotdogs = 250 - meatRoll = 210 - olives = 151 - pastaSauce = 84 - peas = 84 - postCheese = 78 // Posni sir - potato = 86 - fatPork = 393 - onion = 23 cabbage = 25 - sugar = 387 - sunflowerOil = 828 - tomatoPassata = 21 - tomatoPaste = 82 + carrot = 35 + cherry = 63 + chickenBreast = 98 + chinamix = 64 + chocolate = 516 + cocoa = 363 + cornstarch = 346 + cream = 232 + egg = 150 + fatPork = 393 + flour = 338 + haluskymix = 355 + ham = 98 hardCheese = 330 - porkLean = 143 - rice = 130 - water = 0 - skyr = 62 - vegetableMix = 50 - mustard = 30 - beetroot = 43 + hotdogs = 250 ketchup = 92 - sausage = 300 + lentil = 116 + meatRoll = 210 mexicomix = 59 milk = 64 - yeast = 185 - tofu = 76 - sourcream = 70 - cherry = 63 - lentil = 116 - cream = 232 - cornstarch = 346 - zucchini = 21 - chocolate = 516 mistakemeat = 230 - haluskymix = 355 + mustard = 30 + olives = 151 + onion = 23 + pasta = 175 + pastaSauce = 84 + peas = 84 + porkLean = 143 + postCheese = 78 // Posni sir + potato = 86 + rice = 130 + sausage = 300 + skyr = 62 + sourcream = 70 + starch = 400 + sugar = 387 + sunflowerOil = 828 + tofu = 76 + tomatoPassata = 21 + tomatoPaste = 82 + turkey = 111 + vegetableMix = 50 + water = 0 + yeast = 185 + zucchini = 21 + jam = 278 ) // tomato 96 // olives 50 func main() { var ingredients = []ingredient{ - {253, postCheese}, - {400, haluskymix}, - {400, water}, - {50, egg}, + {280, chocolate}, + {150, butter}, + {400, sugar}, + {300, egg}, + {280, flour}, + {200, jam}, } var totalWeight int64