22 lines
450 B
C#
22 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts.Races
|
|
{
|
|
class GiantRace : BasicRace
|
|
{
|
|
public GiantRace() : base()
|
|
{
|
|
racename = "Giant";
|
|
dexterityBonus = 0;
|
|
intelligenceBonus = -3;
|
|
strengthBonus = 2;
|
|
healthBonus = 20;
|
|
secondaryBonus = -10;
|
|
}
|
|
}
|
|
}
|