public DiviningRodItemRecipe(DowsingMod mymod) : base(mymod)
 {
     this.AddTile(16);                 // Anvil
     this.AddIngredient(mymod.GetItem <ViningRodItem>(), 1);
     this.AddIngredient(mymod.GetItem <WitchingRodItem>(), 1);
     this.AddIngredient(ItemID.Throne, 1);
     this.SetResult(mymod.ItemType <DiviningRodItem>());
 }
Example #2
0
 public WitchingRodItemRecipe(DowsingMod mymod) : base(mymod)
 {
     this.AddTile(16);                 // Anvil
     this.AddIngredient(mymod.GetItem <DowsingRodItem>(), 1);
     this.AddIngredient(ItemID.GuideVoodooDoll, 1);
     this.AddIngredient(ItemID.PurificationPowder, 10);
     this.SetResult(mymod.ItemType <WitchingRodItem>());
 }
Example #3
0
 public ViningRodItemRecipe(DowsingMod mymod) : base(mymod)
 {
     this.AddTile(16);                 // Anvil
     this.AddIngredient(mymod.GetItem <DowsingRodItem>(), 1);
     this.AddIngredient(ItemID.Vine, 3);
     this.AddIngredient(ItemID.Amber, 3);
     this.SetResult(mymod.ItemType <ViningRodItem>());
 }
 public DowsingRodItemRecipe(DowsingMod mymod) : base(mymod)
 {
     this.AddTile(16);                 // Anvil
     this.AddIngredient(ItemID.ActiveStoneBlock, 4);
     this.AddIngredient(ItemID.Feather, 1);
     this.AddIngredient(ItemID.Lens, 2);
     this.AddRecipeGroup("Dowsing:EvilBiomeWood", 16);
     this.SetResult(mymod.ItemType <DowsingRodItem>());
 }