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}