1using System.Collections.Generic;
2
3public class Archer : GoodGuy
4{
5 public Archer()
6 {
7 stats = new Stats("Archer");
8 description = "She's a trained markswoman who can snipe anybody from 1km across, she's also trained for basic healing in case of emergency.";
9 fighter_number = 1;
10 }
11}