public Seedling(string filename, string parentCategory, string childCategory) { FileName = filename; CategoryId = SeedCategories.GetCategoryId(parentCategory, childCategory); }
public Seedling(string filename, string category) { FileName = filename; CategoryId = SeedCategories.GetCategoryId(category); }
public BLUCarnivaleSeedling(string name, string category) { FileName = name; CategoryId = SeedCategories.GetCategoryId(category); }
public BLUSpellSeedling(string name, string category) { FileName = name; CategoryId = SeedCategories.GetCategoryId(category); }
public CraftingLogSeedling(string name, string parentCategory, string childCategory) { FileName = name; CategoryId = SeedCategories.GetCategoryId(parentCategory, childCategory); CraftingLogTypeId = SeedCommon.GetCraftingLogTypeIndex(name); }
public AchievementSeedling(string name, string category, string type) { FileName = name; CategoryId = SeedCategories.GetCategoryId(category); AchievementTypeId = SeedCommon.GetAchievementTypeId(type); }