using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace SoulHarvest.Items;
/// <summary>
/// Virtual altar icon for the character-owned Death Domain progression.
/// This item is never granted to the player and cannot toggle the field.
/// </summary>
public sealed class DeathDomain : ModItem
{
public override string Texture => "SoulHarvest/Items/DeathNecklace";
public override void SetDefaults()
{
Item.width = 30;
Item.height = 38;
Item.rare = ItemRarityID.LightRed;
Item.value = 0;
}
}
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
namespace SoulHarvest.Items;
/// <summary>
/// Virtual altar icon for the character-owned Death Domain progression.
/// This item is never granted to the player and cannot toggle the field.
/// </summary>
public sealed class DeathDomain : ModItem
{
public override string Texture => "SoulHarvest/Items/DeathNecklace";
public override void SetDefaults()
{
Item.width = 30;
Item.height = 38;
Item.rare = ItemRarityID.LightRed;
Item.value = 0;
}
}