Worked on UI and translation, worked on classes and races, worked on camera

This commit is contained in:
TAASONI3
2024-06-30 20:00:34 +02:00
parent cbd086d658
commit 80e11d3ce0
33 changed files with 3415 additions and 860 deletions

View File

@@ -0,0 +1,19 @@
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;
}
}
}