all repos — RPG @ 502924ae35666f2d5ac541310b3e57f2e4fe70b4

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}