Exemplo n.º 1
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.MasterBait, 5);
            recipe.AddIngredient(ItemID.GoldDust, 1);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 2);
            recipe.AddRecipe();
        }
Exemplo n.º 2
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.MasterBait, 10);
            recipe.AddIngredient(ItemID.FrostCore);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 10);
            recipe.AddRecipe();
        }
Exemplo n.º 3
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.JourneymanBait, 10);
            recipe.AddIngredient(ItemID.CursedFlame);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 10);
            recipe.AddRecipe();
        }
Exemplo n.º 4
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.MasterBait, 5);
            recipe.AddIngredient(mod, "Shadowflame");
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 5);
            recipe.AddRecipe();
        }
Exemplo n.º 5
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.MasterBait);
            recipe.AddIngredient(ItemID.PurificationPowder, 10);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this);
            recipe.AddRecipe();
        }
Exemplo n.º 6
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.MasterBait);
            recipe.AddIngredient(ItemID.Stinger, 5);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this);
            recipe.AddRecipe();
        }
Exemplo n.º 7
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.JourneymanBait, 5);
            recipe.AddIngredient(ItemID.VialofVenom, 2);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 5);
            recipe.AddRecipe();
        }
Exemplo n.º 8
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.ApprenticeBait, 15);
            recipe.AddIngredient(ItemID.Ichor);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 15);
            recipe.AddRecipe();
        }
Exemplo n.º 9
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.JourneymanBait, 25);
            recipe.AddIngredient(ItemID.FragmentSolar, 2);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 25);
            recipe.AddRecipe();
        }
Exemplo n.º 10
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.MasterBait);
            recipe.AddIngredient(ItemID.Nanites);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this);
            recipe.AddRecipe();

            recipe = new BaitRecipe(mod);
            recipe.AddIngredient(ItemID.MasterBait);
            recipe.AddIngredient(mod, "FungalSpores", 3);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 1);
            recipe.AddRecipe();
        }
Exemplo n.º 11
0
        public override void AddRecipes()
        {
            BaitRecipe recipe = new BaitRecipe(mod);

            recipe.AddIngredient(ItemID.JourneymanBait, 5);
            recipe.AddIngredient(ItemID.Nanites, 2);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 5);
            recipe.AddRecipe();

            recipe = new BaitRecipe(mod);
            recipe.AddIngredient(ItemID.JourneymanBait, 3);
            recipe.AddIngredient(mod, "FungalSpores", 2);
            recipe.AddTile(TileID.Bottles);
            recipe.SetResult(this, 3);
            recipe.AddRecipe();
        }