all repos — RPG @ 9a9528c6bffc34089550b5e8fb4c5a1c4754c8cf

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}