1
Fork 0
mirror of https://github.com/Steffo99/royal-terraria12.git synced 2024-11-21 12:34:22 +00:00
terraria12-rebalance/Summer2018/Summer2018.cs
2018-07-10 18:07:39 +02:00

36 lines
1.4 KiB
C#

using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace Summer2018
{
public class Summer2018 : Mod
{
public override void AddRecipes()
{
//More Hermes Boots
ModRecipe newHermesBoots = new ModRecipe(this);
newHermesBoots.AddIngredient(ItemID.Feather, 5);
newHermesBoots.AddIngredient(ItemID.Silk, 5);
newHermesBoots.AddTile(TileID.Anvils);
newHermesBoots.SetResult(ItemID.HermesBoots);
newHermesBoots.AddRecipe();
//Altezza Coniglio
ModRecipe newFuzzyCarrot = new ModRecipe(this);
newFuzzyCarrot.AddIngredient(ItemID.Daybloom, 30);
newFuzzyCarrot.AddIngredient(ItemID.Blinkroot, 10);
newFuzzyCarrot.AddIngredient(ItemID.Moonglow, 30);
newFuzzyCarrot.AddTile(TileID.WorkBenches);
newFuzzyCarrot.SetResult(ItemID.FuzzyCarrot);
newFuzzyCarrot.AddRecipe();
//Easy Inferno Potion
ModRecipe easyInfernoPotion = new ModRecipe(this);
easyInfernoPotion.AddIngredient(ItemID.Fireblossom, 10);
easyInfernoPotion.AddIngredient(ItemID.Obsidian, 5);
easyInfernoPotion.AddTile(TileID.Bottles);
easyInfernoPotion.SetResult(ItemID.InfernoPotion);
easyInfernoPotion.AddRecipe();
}
}
}