2022-02-24 10:45:40 +01:00

22 lines
455 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Races
{
class GoblinRace : BasicRace
{
public GoblinRace() : base()
{
racename = "Goblin";
dexterityBonus = 3;
intelligenceBonus = -1;
strengthBonus = -2;
healthBonus = -10;
secondaryBonus = -10;
}
}
}