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