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