12 lines
No EOL
318 B
C#
12 lines
No EOL
318 B
C#
public class MagicMove : Move
|
|
{
|
|
public override string Type => "MagicMove";
|
|
public int AttackPower;
|
|
public int MPCost;
|
|
|
|
public MagicMove(string name, string description, int attackpower, int mpcost) : base(name, description)
|
|
{
|
|
AttackPower = attackpower;
|
|
MPCost = mpcost;
|
|
}
|
|
} |