12 lines
249 B
C#
12 lines
249 B
C#
public class Amarok : Character
|
|
{
|
|
public Amarok()
|
|
{
|
|
maxHP = 4;
|
|
currentHP = maxHP;
|
|
name = "Amarok";
|
|
damageReduction = 1;
|
|
CharacterEnabledActions.AddRange("Bite", "Health Potion", "Do Nothing");
|
|
}
|
|
}
|