Added Mandrake Decoction
This commit is contained in:
@@ -54,6 +54,8 @@ var (
|
|||||||
LeachedCoal Ingredient = Ingredient{"Leached Coal", BottomShelf}
|
LeachedCoal Ingredient = Ingredient{"Leached Coal", BottomShelf}
|
||||||
Saltpetre Ingredient = Ingredient{"Saltpetre", BottomShelf}
|
Saltpetre Ingredient = Ingredient{"Saltpetre", BottomShelf}
|
||||||
Sulphur Ingredient = Ingredient{"Sulphur", BottomShelf}
|
Sulphur Ingredient = Ingredient{"Sulphur", BottomShelf}
|
||||||
|
MandrakeRoot Ingredient = Ingredient{"Mandrake Root", BottomShelf}
|
||||||
|
FreshwaterPearl Ingredient = Ingredient{"Freshwater Pearl", BottomShelf}
|
||||||
)
|
)
|
||||||
|
|
||||||
func IngredientFromString(s string) (Ingredient, error) {
|
func IngredientFromString(s string) (Ingredient, error) {
|
||||||
@@ -120,6 +122,10 @@ func IngredientFromString(s string) (Ingredient, error) {
|
|||||||
return Saltpetre, nil
|
return Saltpetre, nil
|
||||||
case "Sulphur":
|
case "Sulphur":
|
||||||
return Sulphur, nil
|
return Sulphur, nil
|
||||||
|
case "MandrakeRoot":
|
||||||
|
return MandrakeRoot, nil
|
||||||
|
case "FreshwaterPearl":
|
||||||
|
return FreshwaterPearl, nil
|
||||||
default:
|
default:
|
||||||
return Water, fmt.Errorf("Invalid Ingredient: %s", s)
|
return Water, fmt.Errorf("Invalid Ingredient: %s", s)
|
||||||
}
|
}
|
||||||
|
|||||||
17
recipes.txt
17
recipes.txt
@@ -431,3 +431,20 @@ Recipe:
|
|||||||
Boil for 1 turn.
|
Boil for 1 turn.
|
||||||
Add 1 Charcoal to the mortar, grind, and pour into the cauldron.
|
Add 1 Charcoal to the mortar, grind, and pour into the cauldron.
|
||||||
Pour into phial.
|
Pour into phial.
|
||||||
|
|
||||||
|
--
|
||||||
|
|
||||||
|
Mandrake Decoction
|
||||||
|
|
||||||
|
Liquid Base: Wine
|
||||||
|
|
||||||
|
Ingredients: Mandrake Root x1, Freshwater Pearl x1, Sage x2
|
||||||
|
|
||||||
|
Recipe:
|
||||||
|
Add 1 Mandrake Root to the cauldron.
|
||||||
|
Boil for 1 turn.
|
||||||
|
Add 1 Freshwater Pearl to the mortar, grind, and pour into the cauldron.
|
||||||
|
Boil for 1 turn.
|
||||||
|
Add 2 Sage to the mortar, grind, and pour into the cauldron.
|
||||||
|
Boil for 1 turn using bellows.
|
||||||
|
Prepare phial and distill.
|
||||||
|
|||||||
Reference in New Issue
Block a user