11 lines
240 B
C#
11 lines
240 B
C#
class VinFletcher : Character
|
|
{
|
|
public VinFletcher()
|
|
{
|
|
maxHP = 15;
|
|
currentHP = maxHP;
|
|
name = "Vin Fletcher";
|
|
CharacterEnabledActions.AddRange("Punch", "Health Potion", "Items", "Do Nothing");
|
|
}
|
|
}
|