22 lines
446 B
C#
22 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts.Races
|
|
{
|
|
class HumanRace : BasicRace
|
|
{
|
|
public HumanRace() : base()
|
|
{
|
|
racename = "Human";
|
|
dexterityBonus = 0;
|
|
intelligenceBonus = 0;
|
|
strengthBonus = 0;
|
|
healthBonus = 0;
|
|
secondaryBonus = 0;
|
|
}
|
|
}
|
|
}
|