Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SetupRecipeGroups()

static void Terraria.Recipe.SetupRecipeGroups ( )
inlinestatic

Definition at line 696 of file Recipe.cs.

697 {
698 RecipeGroup rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.GetNPCNameValue(74), 2015, 2016, 2017);
699 RecipeGroupID.Birds = RecipeGroup.RegisterGroup("Birds", rec);
700 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.GetNPCNameValue(367), 2157, 2156);
701 RecipeGroupID.Scorpions = RecipeGroup.RegisterGroup("Scorpions", rec);
702 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.GetNPCNameValue(299), 2018, 3563);
703 RecipeGroupID.Squirrels = RecipeGroup.RegisterGroup("Squirrels", rec);
704 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.misc[85].Value, 3194, 3192, 3193);
705 RecipeGroupID.Bugs = RecipeGroup.RegisterGroup("Bugs", rec);
706 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.misc[86].Value, 2123, 2122);
707 RecipeGroupID.Ducks = RecipeGroup.RegisterGroup("Ducks", rec);
708 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.misc[87].Value, 1998, 2001, 1994, 1995, 1996, 1999, 1997, 2000);
709 RecipeGroupID.Butterflies = RecipeGroup.RegisterGroup("Butterflies", rec);
710 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.misc[88].Value, 1992, 2004);
711 RecipeGroupID.Fireflies = RecipeGroup.RegisterGroup("Fireflies", rec);
712 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.misc[95].Value, 2006, 2007);
713 RecipeGroupID.Snails = RecipeGroup.RegisterGroup("Snails", rec);
714 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.misc[105].Value, 4334, 4335, 4336, 4338, 4339, 4337);
715 RecipeGroupID.Dragonflies = RecipeGroup.RegisterGroup("Dragonflies", rec);
716 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Lang.GetNPCNameValue(616), 4464, 4465);
717 RecipeGroupID.Turtles = RecipeGroup.RegisterGroup("Turtles", rec);
718 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Language.GetTextValue("Misc.Macaw"), 5212, 5300);
719 RecipeGroupID.Macaws = RecipeGroup.RegisterGroup("Macaws", rec);
720 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Language.GetTextValue("Misc.Cockatiel"), 5312, 5313);
721 RecipeGroupID.Cockatiels = RecipeGroup.RegisterGroup("Cockatiels", rec);
722 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Language.GetTextValue("Misc.CloudBalloon"), 399, 1250);
723 RecipeGroupID.CloudBalloons = RecipeGroup.RegisterGroup("Cloud Balloons", rec);
724 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Language.GetTextValue("Misc.BlizzardBalloon"), 1163, 1251);
725 RecipeGroupID.BlizzardBalloons = RecipeGroup.RegisterGroup("Blizzard Balloons", rec);
726 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Language.GetTextValue("Misc.SandstormBalloon"), 983, 1252);
727 RecipeGroupID.SandstormBalloons = RecipeGroup.RegisterGroup("Sandstorm Balloons", rec);
728 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Language.GetTextValue("Misc.CritterGuides"), 4767, 5453);
729 RecipeGroupID.CritterGuides = RecipeGroup.RegisterGroup("Guide to Critter Companionship", rec);
730 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Language.GetTextValue("Misc.NatureGuides"), 5309, 5454);
731 RecipeGroupID.NatureGuides = RecipeGroup.RegisterGroup("Guide to Nature Preservation", rec);
732 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Language.GetTextValue("Misc.Fruit"), 4009, 4282, 4283, 4284, 4285, 4286, 4287, 4288, 4289, 4290, 4291, 4292, 4293, 4294, 4295, 4296, 4297, 5277, 5278);
733 RecipeGroupID.Fruit = RecipeGroup.RegisterGroup("Fruit", rec);
734 rec = new RecipeGroup(() => Lang.misc[37].Value + " " + Language.GetTextValue("Misc.Balloon"), 3738, 3736, 3737);
735 RecipeGroupID.Balloons = RecipeGroup.RegisterGroup("Balloons", rec);
736 rec = new RecipeGroup(() => "replaceme wood", 9, 619, 620, 621, 911, 1729, 2504, 2503, 5215);
737 RecipeGroupID.Wood = RecipeGroup.RegisterGroup("Wood", rec);
738 rec = new RecipeGroup(() => "replaceme sand", 169, 408, 1246, 370, 3272, 3338, 3274, 3275);
739 RecipeGroupID.Sand = RecipeGroup.RegisterGroup("Sand", rec);
740 rec = new RecipeGroup(() => "replaceme ironbar", 22, 704);
741 RecipeGroupID.IronBar = RecipeGroup.RegisterGroup("IronBar", rec);
742 rec = new RecipeGroup(() => "replaceme fragment", 3458, 3456, 3457, 3459);
743 RecipeGroupID.Fragment = RecipeGroup.RegisterGroup("Fragment", rec);
744 rec = new RecipeGroup(() => "replaceme pressureplate", 852, 543, 542, 541, 1151, 529, 853, 4261);
745 RecipeGroupID.PressurePlate = RecipeGroup.RegisterGroup("PressurePlate", rec);
746 }
static string GetTextValue(string key)
Definition Language.cs:15

References Terraria.Lang.GetNPCNameValue(), Terraria.Localization.Language.GetTextValue(), Terraria.Lang.misc, and Terraria.RecipeGroup.RegisterGroup().

Referenced by Terraria.Recipe.SetupRecipes().