Decimation_Mod/Content/Items/Potions/EnchantedMushroom.cs
2020-06-05 18:59:37 -04:00

41 lines
1.2 KiB
C#

using Decimation.Lib.Items;
using Decimation.Lib.Util;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace Decimation.Content.Items.Potions
{
internal class EnchantedMushroom : DecimationPotion
{
protected override string ItemName => "Enchanted Mushroom";
protected override string ItemTooltip => "Cures poison \nGives Happy! buff";
protected override int BuffType => BuffID.Sunflower;
protected override int BuffTime => 7200;
protected override int HealLife => 90;
protected override void InitPotion()
{
item.value = Item.buyPrice(0, 0, 15);
item.rare = Rarity.Blue.GetRarityValue();
}
public override bool UseItem(Player player)
{
player.ClearBuff(BuffID.Poisoned);
return true;
}
protected override ModRecipe GetRecipe()
{
ModRecipe recipe = GetNewModRecipe(this, 1, TileID.AlchemyTable);
recipe.AddIngredient(ItemID.Mushroom);
recipe.AddIngredient(ItemID.GlowingMushroom);
recipe.AddIngredient(ItemID.BottledHoney);
recipe.AddIngredient(ItemID.FallenStar);
return recipe;
}
}
}