Further work on static side

This commit is contained in:
2024-07-20 16:12:39 +02:00
parent 3845f91601
commit 1b501dee7e
29 changed files with 670 additions and 155 deletions

View File

@@ -14,7 +14,7 @@ public enum ItemCategory
MiscItem,
/// <summary>
/// Pokeballs are used for capturing Pokemons.
/// Pokeballs are used for capturing Pokémons.
/// </summary>
Pokeball,
@@ -60,17 +60,17 @@ public enum BattleItemCategory
None,
/// <summary>
/// This item is used for healing Pokemon.
/// This item is used for healing Pokémon.
/// </summary>
Healing,
/// <summary>
/// This item is used for healing Pokemon from a status.
/// This item is used for healing Pokémon from a status.
/// </summary>
StatusHealing,
/// <summary>
/// This item is used for capturing Pokemon.
/// This item is used for capturing Pokémon.
/// </summary>
Pokeball,
@@ -83,13 +83,8 @@ public enum BattleItemCategory
/// <summary>
/// An item is an object which the player can pick up, keep in their Bag, and use in some manner.
/// </summary>
public interface IItem
public interface IItem : INamedValue
{
/// <summary>
/// The name of the item.
/// </summary>
StringKey Name { get; }
/// <summary>
/// Which bag slot items are stored in.
/// </summary>