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