tModLoader Why don't my mod items show up.

I also just started modding, and I don't understand why this accessory isn't showing up in the "Mod" section of the HERO's Mod Inventory. I can't craft it either.
Here's the code:

using System;
using System.Collections.Generic;
using System Linq;
using System.Runtime.CompilerServices;
using System.Notepad;
using System.Threading.Tasks;
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;

namespace Swordverse.Items
{

public class Swordverse : ModItem
{
public override void SetDefaults()
{
item.name = "Wyvern Stone";
properties.Autoload = true;
properties.AutoloadGores = true;
properties.AutoloadSounds = true;
item.width = 14;
item height = 14;
item.toolTip = "Grants immunity to fall damage and increases melee damage";
item.value = (0, 50, 0, 0);
item.rare = 11;
item.accessory = true;
}

public override void UpdateAccessory(Player player)
{
player.enemySpawns = true;
}

public override void AddRecipies()
{
ModRecipe recipe = new ModRecipe(mod);
recipe.AddIngredient(ItemID.SoulOfFlight, 5);
recipe.AddIngredient(ItemID.RagePotion, 1);
recipe.AddTile(17);
recipe.SetResult(this);
recipe.AddRecipe();
}
}
}
 
Back
Top Bottom