public override void AddRecipes()
        {
            ModRecipe recipe = new StarMetalRecipes(mod);

            recipe.AddIngredient(ItemID.Torch, 200);
            recipe.AddRecipeGroup("SGAmod:Gems", 10);
            recipe.AddTile(TileID.WorkBenches);
            recipe.SetResult(this, 1);
            recipe.AddRecipe();
        }
        public override void AddRecipes()
        {
            ModRecipe recipe = new StarMetalRecipes(mod);

            recipe.AddIngredient(mod.ItemType("StarMetalMold"), 1);
            recipe.AddIngredient(ItemID.LunarOre, 1);
            recipe.AddRecipeGroup("SGAmod:CelestialFragments", 4);
            recipe.SetResult(this, 4);
            recipe.AddRecipe();
        }
        public override void AddRecipes()
        {
            ModRecipe recipe = new StarMetalRecipes(mod);

            recipe.AddIngredient(ItemID.RocketLauncher, 1);
            recipe.AddIngredient(mod.ItemType("PrismalBar"), 15);
            recipe.AddTile(mod.TileType("PrismalStation"));
            recipe.SetResult(this, 1);
            recipe.AddRecipe();
        }
        public override void AddRecipes()
        {
            ModRecipe recipe = new StarMetalRecipes(mod);

            recipe.AddIngredient(mod.ItemType("UnmanedSword"), 1);
            recipe.AddIngredient(ItemID.BrokenHeroSword, 1);
            recipe.AddIngredient(mod.ItemType("IlluminantEssence"), 10);
            recipe.AddIngredient(mod.ItemType("StarMetalBar"), 5);
            recipe.AddTile(TileID.LunarCraftingStation);
            recipe.SetResult(this, 1);
            recipe.AddRecipe();
        }
        public override void AddRecipes()
        {
            ModRecipe recipe = new StarMetalRecipes(mod);

            recipe.AddIngredient(mod.ItemType("ClayMore"), 1);
            recipe.AddIngredient(ItemID.BrokenHeroSword, 1);
            recipe.AddIngredient(mod.ItemType("PrimordialSkull"), 1);
            recipe.AddIngredient(ItemID.HellstoneBar, 15);
            recipe.AddIngredient(mod.ItemType("FieryShard"), 8);
            recipe.AddTile(TileID.MythrilAnvil);
            recipe.SetResult(this, 1);
            recipe.AddRecipe();
        }
Example #6
0
        public override void AddRecipes()
        {
            ModRecipe recipe = new StarMetalRecipes(mod);

            recipe.AddIngredient(mod.ItemType("Surt"), 1);
            recipe.AddIngredient(mod.ItemType("FieryShard"), 5);
            recipe.AddIngredient(mod.ItemType("CalamityRune"), 2);
            recipe.AddIngredient(mod.ItemType("Entrophite"), 50);
            recipe.AddIngredient(ItemID.LunarBar, 10);
            recipe.AddIngredient(mod.ItemType("LunarRoyalGel"), 15);
            recipe.AddTile(TileID.LunarCraftingStation);
            recipe.SetResult(this, 1);
            recipe.AddRecipe();
        }