using SoulHarvest.Common; using Terraria; using Terraria.ID; using Terraria.ModLoader; namespace SoulHarvest.Items; public static class ReaperSoulSealCatalog { public static int GetItemType(ReaperStage stage) { return stage switch { ReaperStage.StageI => ModContent.ItemType(), ReaperStage.StageII => ModContent.ItemType(), ReaperStage.StageIII => ModContent.ItemType(), _ => ItemID.None }; } }