NadekoBot/NadekoBot.Modules.Pokemon/Common/PokeStats.cs

16 lines
440 B
C#
Raw Normal View History

2016-11-25 00:20:18 +00:00
using System.Collections.Generic;
2017-07-17 19:42:36 +00:00
namespace NadekoBot.Modules.Pokemon.Common
2016-11-25 00:20:18 +00:00
{
public class PokeStats
2016-11-25 00:20:18 +00:00
{
//Health left
public int Hp { get; set; } = 500;
public int MaxHp { get; } = 500;
//Amount of moves made since last time attacked
public int MovesMade { get; set; } = 0;
//Last people attacked
public List<ulong> LastAttacked { get; set; } = new List<ulong>();
}
}