2024-08-18 12:22:50 +00:00
|
|
|
namespace PkmnLib.Dataloader.Models;
|
|
|
|
|
|
|
|
public class SerializedItem
|
|
|
|
{
|
2024-08-23 07:24:00 +00:00
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public string ItemType { get; set; } = null!;
|
|
|
|
public string BattleType { get; set; } = null!;
|
|
|
|
public string[] Flags { get; set; } = null!;
|
2024-08-18 12:22:50 +00:00
|
|
|
public int Price { get; set; }
|
|
|
|
public byte FlingPower { get; set; }
|
|
|
|
}
|