20 lines
417 B
C#
20 lines
417 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Assets.Scripts.Races
|
|
{
|
|
class NightelfRace : BasicRace
|
|
{
|
|
public NightelfRace() : base()
|
|
{
|
|
racename = "Nightelf";
|
|
dexterityBonus = 2;
|
|
intelligenceBonus = 2;
|
|
strengthBonus = -2;
|
|
healthBonus = 0;
|
|
secondaryBonus = 10;
|
|
}
|
|
}
|
|
}
|