MiniRPG/scripts/objects/moves/Move.cs

15 lines
403 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 virtual string Type { get; set; }
public Move(string name, string description, int power, int mpcost){
Name = name;
Description = description;
Power = power;
MPCost = mpcost;
}
}