58 lines
1.5 KiB
C#
58 lines
1.5 KiB
C#
using System.Collections.Generic;
|
|
using Microsoft.Xna.Framework;
|
|
using Terraria.ModLoader;
|
|
using Terraria.UI.Chat;
|
|
|
|
namespace Decimation.Lib.Amulets
|
|
{
|
|
public class AmuletTooltip
|
|
{
|
|
private readonly Amulet _amulet;
|
|
private readonly Color _classColor = ChatManager.WaveColor(Color.Fuchsia);
|
|
private readonly Color _effectColor = Color.ForestGreen;
|
|
private readonly Mod _mod;
|
|
private readonly Color _synergyColor = Color.CadetBlue;
|
|
|
|
private int _effectCount;
|
|
|
|
public AmuletTooltip(Mod mod, Amulet amulet)
|
|
{
|
|
_mod = mod;
|
|
_amulet = amulet;
|
|
Lines = new List<TooltipLine>();
|
|
|
|
SetClassTooltip();
|
|
}
|
|
|
|
public List<TooltipLine> Lines { get; set; }
|
|
|
|
private void SetClassTooltip()
|
|
{
|
|
Lines.Add(new TooltipLine(_mod, "DecimationAmuletClass", _amulet.AmuletClass.ToString("F"))
|
|
{
|
|
overrideColor = _classColor
|
|
});
|
|
}
|
|
|
|
public AmuletTooltip AddEffect(string tooltip)
|
|
{
|
|
Lines.Add(new TooltipLine(_mod, $"Effect{_effectCount}", tooltip)
|
|
{
|
|
overrideColor = _effectColor
|
|
});
|
|
|
|
_effectCount++;
|
|
return this;
|
|
}
|
|
|
|
public AmuletTooltip AddSynergy(string tooltip)
|
|
{
|
|
Lines.Add(new TooltipLine(_mod, "Synergy", tooltip)
|
|
{
|
|
overrideColor = _synergyColor
|
|
});
|
|
|
|
return this;
|
|
}
|
|
}
|
|
} |