Exemplo n.º 1
0
 public Seedling(string filename, string parentCategory, string childCategory)
 {
     FileName   = filename;
     CategoryId = SeedCategories.GetCategoryId(parentCategory, childCategory);
 }
Exemplo n.º 2
0
 public Seedling(string filename, string category)
 {
     FileName   = filename;
     CategoryId = SeedCategories.GetCategoryId(category);
 }
Exemplo n.º 3
0
 public BLUCarnivaleSeedling(string name, string category)
 {
     FileName   = name;
     CategoryId = SeedCategories.GetCategoryId(category);
 }
Exemplo n.º 4
0
 public BLUSpellSeedling(string name, string category)
 {
     FileName   = name;
     CategoryId = SeedCategories.GetCategoryId(category);
 }
Exemplo n.º 5
0
 public CraftingLogSeedling(string name, string parentCategory, string childCategory)
 {
     FileName          = name;
     CategoryId        = SeedCategories.GetCategoryId(parentCategory, childCategory);
     CraftingLogTypeId = SeedCommon.GetCraftingLogTypeIndex(name);
 }
Exemplo n.º 6
0
 public AchievementSeedling(string name, string category, string type)
 {
     FileName          = name;
     CategoryId        = SeedCategories.GetCategoryId(category);
     AchievementTypeId = SeedCommon.GetAchievementTypeId(type);
 }