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

37 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 CommanderPotion : DecimationPotion
{
protected override string ItemName => "Commander Potion";
protected override string ItemTooltip =>
"Increases your max number of minions by 1 \nMinions damages +10% \nMinions knockback +10%";
protected override int BuffType => ModContent.BuffType<Commander>();
protected override int BuffTime => 36000;
protected override void InitPotion()
{
item.value = Item.buyPrice(0, 1);
}
protected override ModRecipe GetRecipe()
{
ModRecipe recipe = GetNewModRecipe(this, 1, TileID.AlchemyTable);
recipe.AddIngredient(ItemID.SummoningPotion);
recipe.AddIngredient(ItemID.SoulofFlight, 20);
recipe.AddIngredient(ItemID.VariegatedLardfish);
recipe.AddIngredient(ItemID.MagicPowerPotion, 2);
recipe.AddIngredient(ItemID.RottenChunk, 2);
return recipe;
}
}
}