Decimation_Mod/Content/Items/Potions/EnchantedMushroom.cs
FyloZ ec4585bed5 - Changed Bloodshot Eye's music to Boss 1 Orchestra ( https://www.youtube.com/watch?time_continue=120&v=r-9nKGc85FQ )
- Added support for animated projectiles
- Refactoring
- Removed useless fields
- Fixed swords not dealing damages
- Added Hour Hand (from Evie's PR)
2020-03-21 00:11:07 -04:00

39 lines
1.1 KiB
C#

using Decimation.Lib.Items;
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);
}
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;
}
}
}