all repos — RPG @ master

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

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

 1using System.Collections.Generic;
 2
 3public class Boxer : GoodGuy
 4{
 5    public Boxer()
 6    {
 7        stats = new Stats("Boxer");
 8        description = "He's tough, he can withstand a lot of damage, but maybe his fists are not too accurate.";
 9        fighter_number = 2;
10    }
11}