22 lines
510 B
C#
22 lines
510 B
C#
public class Move
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public int Power { get; set; }
|
|
public int MPCost { get; set; }
|
|
public MoveType Type { get; set; }
|
|
|
|
public enum MoveType {
|
|
Attack,
|
|
Heal,
|
|
Buff
|
|
}
|
|
|
|
public Move(string name, string description, int power, int mpcost, MoveType type){
|
|
Name = name;
|
|
Description = description;
|
|
Power = power;
|
|
MPCost = mpcost;
|
|
Type = type;
|
|
}
|
|
}
|