10 lines
271 B
C#
10 lines
271 B
C#
using Terraria.ID;
|
|
|
|
namespace Decimation.Content.Items.Misc.ConcentratedSouls
|
|
{
|
|
public class ConcentratedMight : ConcentratedSoul
|
|
{
|
|
protected override string ItemName => "Concentrated Might";
|
|
public override int Soul => ItemID.SoulofMight;
|
|
}
|
|
} |