all repos — RPG @ 9a9528c6bffc34089550b5e8fb4c5a1c4754c8cf

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}