all repos — RPG @ master

Fully functional 3D turn based role playing game coded in C# and base Unity.

Assets/Scripts/Battle/Fighters/Paladin.cs (view raw)

 1using System.Collections.Generic;
 2
 3public class Paladin : GoodGuy
 4{
 5    public Paladin()
 6    {
 7        stats = new Stats("Paladin");
 8        description = "He sweared to protect and serve his kingdom, and he's willing to give his life if the King asks him to.";
 9        fighter_number = 0;
10    }
11}