all repos — RPG @ 502924ae35666f2d5ac541310b3e57f2e4fe70b4

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

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

 1using System.Collections.Generic;
 2
 3public class Mage : GoodGuy
 4{
 5    public Mage()
 6    {
 7        stats = new Stats("Mage");
 8        description = "She's a skilled healer, a bit weak against physical attacks. Remember to keep her healthy or she might die on you when you least expect it.";
 9        fighter_number = 3;
10    }
11}