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
|
|
|
|
{
|
2017-05-27 17:42:23 +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>();
|
|
|
|
|
}
|
|
|
|
|
}
|