Initial commit
Adding all of the current content for Anphillia Unlimited.
This commit is contained in:
79
_module/nss/cnrbrewerskettle.nss
Normal file
79
_module/nss/cnrbrewerskettle.nss
Normal file
@@ -0,0 +1,79 @@
|
||||
/////////////////////////////////////////////////////////
|
||||
//
|
||||
// Craftable Natural Resources (CNR) by Festyx
|
||||
//
|
||||
// Name: cnrBrewersKettle
|
||||
//
|
||||
// Desc: Recipe initialization.
|
||||
//
|
||||
// Author: David Bobeck 15May03
|
||||
//
|
||||
/////////////////////////////////////////////////////////
|
||||
#include "cnr_recipe_utils"
|
||||
|
||||
void main()
|
||||
{
|
||||
string sKeyToRecipe;
|
||||
|
||||
PrintString("cnrBrewersKettle init");
|
||||
|
||||
/////////////////////////////////////////////////////////
|
||||
// Default CNR recipes made in cnrBrewersKettle
|
||||
/////////////////////////////////////////////////////////
|
||||
CnrRecipeSetDeviceTradeskillType("cnrBrewersKettle", CNR_TRADESKILL_FOOD_CRAFTING);
|
||||
|
||||
sKeyToRecipe = CnrRecipeCreateRecipe("cnrBrewersKettle", "Barley Wort", "cnrBarleyWort", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrBarleyMalt", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrSugar", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrBucketWater", 1);
|
||||
CnrRecipeSetRecipeBiproduct(sKeyToRecipe, "cnrBucketEmpty", 1, 1);
|
||||
CnrRecipeSetRecipeLevel(sKeyToRecipe, 2);
|
||||
CnrRecipeSetRecipeXP(sKeyToRecipe, 15, 15);
|
||||
CnrRecipeSetRecipeAbilityPercentages(sKeyToRecipe, 0, 0, 40, 0, 60, 0);
|
||||
|
||||
sKeyToRecipe = CnrRecipeCreateRecipe("cnrBrewersKettle", "Corn Wort", "cnrCornWort", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrCornMalt", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrSugar", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrBucketWater", 1);
|
||||
CnrRecipeSetRecipeBiproduct(sKeyToRecipe, "cnrBucketEmpty", 1, 1);
|
||||
CnrRecipeSetRecipeLevel(sKeyToRecipe, 2);
|
||||
CnrRecipeSetRecipeXP(sKeyToRecipe, 15, 15);
|
||||
CnrRecipeSetRecipeAbilityPercentages(sKeyToRecipe, 0, 0, 40, 0, 60, 0);
|
||||
|
||||
sKeyToRecipe = CnrRecipeCreateRecipe("cnrBrewersKettle", "Oat Wort", "cnrOatsWort", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrOatsMalt", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrSugar", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrBucketWater", 1);
|
||||
CnrRecipeSetRecipeBiproduct(sKeyToRecipe, "cnrBucketEmpty", 1, 1);
|
||||
CnrRecipeSetRecipeLevel(sKeyToRecipe, 2);
|
||||
CnrRecipeSetRecipeXP(sKeyToRecipe, 15, 15);
|
||||
CnrRecipeSetRecipeAbilityPercentages(sKeyToRecipe, 0, 0, 40, 0, 60, 0);
|
||||
|
||||
sKeyToRecipe = CnrRecipeCreateRecipe("cnrBrewersKettle", "Rice Wort", "cnrRiceWort", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrRiceMalt", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrSugar", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrBucketWater", 1);
|
||||
CnrRecipeSetRecipeBiproduct(sKeyToRecipe, "cnrBucketEmpty", 1, 1);
|
||||
CnrRecipeSetRecipeLevel(sKeyToRecipe, 2);
|
||||
CnrRecipeSetRecipeXP(sKeyToRecipe, 15, 15);
|
||||
CnrRecipeSetRecipeAbilityPercentages(sKeyToRecipe, 0, 0, 40, 0, 60, 0);
|
||||
|
||||
sKeyToRecipe = CnrRecipeCreateRecipe("cnrBrewersKettle", "Rye Wort", "cnrRyeWort", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrRyeMalt", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrSugar", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrBucketWater", 1);
|
||||
CnrRecipeSetRecipeBiproduct(sKeyToRecipe, "cnrBucketEmpty", 1, 1);
|
||||
CnrRecipeSetRecipeLevel(sKeyToRecipe, 2);
|
||||
CnrRecipeSetRecipeXP(sKeyToRecipe, 15, 15);
|
||||
CnrRecipeSetRecipeAbilityPercentages(sKeyToRecipe, 0, 0, 40, 0, 60, 0);
|
||||
|
||||
sKeyToRecipe = CnrRecipeCreateRecipe("cnrBrewersKettle", "Wheat Wort", "cnrWheatWort", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrWheatMalt", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrSugar", 1);
|
||||
CnrRecipeAddComponent(sKeyToRecipe, "cnrBucketWater", 1);
|
||||
CnrRecipeSetRecipeBiproduct(sKeyToRecipe, "cnrBucketEmpty", 1, 1);
|
||||
CnrRecipeSetRecipeLevel(sKeyToRecipe, 2);
|
||||
CnrRecipeSetRecipeXP(sKeyToRecipe, 15, 15);
|
||||
CnrRecipeSetRecipeAbilityPercentages(sKeyToRecipe, 0, 0, 40, 0, 60, 0);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user