Can't help with ramen.... but I have a great instant choc sponge cake recipe written in C# for you lol
using CookingInCode.Equipment;
using CookingInCode.Ingredientes;
using CookingInCode.Qualifiers;
namespace CookingInCode.Recipes.Desserts {
public class CakeInACup : IRecipe {
public IContainer Prepare() {
var flour = Kitchen.Ingredients.Get(4, Units.Tablespoon, IngredientType.SelfRaisingFlour);
var sugar = Kitchen.Ingredients.Get(4, Units.Tablespoon, IngredientType.Sugar);
var cocoa = Kitchen.Ingredients.Get(2, Units.Tablespoon, IngredientType.CocoaPowder);
var egg = Kitchen.Ingredients.Get(IngredientType.Egg);
var milk = Kitchen.Ingredients.Get(3, Units.Tablespoon, IngredientType.Milk);
var oil = Kitchen.Ingredients.Get(3, Units.Tablespoon, IngredientType.CanolaOil);
var mug = Kitchen.Containers.Get(ContainerType.LargeMug);
mug.Contents.Add(new [] { flour, sugar, cocoa });
You.Prepare.Mix(mug.Contents, MixType.EvenDistribution);
mug.Contents.Add(new [] { egg, milk, oil });
You.Prepare.Mix(mug.Contents, MixType.SmoothPaste);
Kitchen.Microwave.ActiveContainer = mug;
Kitchen.Microwave.Cook(MicrowavePower.Full, Duration.Minute * 3);
Kitchen.Microwave.ActiveContainer = null;
return mug;
}
}
}