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 ElvenRace : BasicRace
|
|
{
|
|
public ElvenRace() : base()
|
|
{
|
|
racename = "Elf";
|
|
dexterityBonus = 2;
|
|
intelligenceBonus = 3;
|
|
strengthBonus = -2;
|
|
healthBonus = 0;
|
|
secondaryBonus = 20;
|
|
}
|
|
}
|
|
}
|