all repos — RPG @ 6c05a2dbbbf1a595de392cda9fc6b624274a08d9

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

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

 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}