Early Access, v1.0.1
This commit is contained in:
21
Assets/Scripts/Races/ElvenRace.cs
Normal file
21
Assets/Scripts/Races/ElvenRace.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user