Decimation_Mod/Content/Items/Potions/WarlockPotion.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

36 lines
1.1 KiB
C#

using Decimation.Content.Buffs.Buffs;
using Decimation.Lib.Items;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace Decimation.Content.Items.Potions
{
internal class WarlockPotion : DecimationPotion
{
protected override string ItemName => "Warlock Potion";
protected override string ItemTooltip =>
"Increased Mana Regeneration \nIncreased max mana \n10% increased magic damage";
protected override int BuffType => ModContent.BuffType<Warlock>();
protected override int BuffTime => 36000;
protected override void InitPotion()
{
item.value = Item.buyPrice(0, 0, 80);
}
protected override ModRecipe GetRecipe()
{
ModRecipe recipe = GetNewModRecipe(this, 1, TileID.AlchemyTable);
recipe.AddIngredient(ItemID.ManaRegenerationPotion);
recipe.AddIngredient(ItemID.ManaCrystal);
recipe.AddIngredient(ItemID.SoulofMight, 10);
recipe.AddIngredient(ItemID.BottledHoney);
return recipe;
}
}
}