all repos — RPG @ 502924ae35666f2d5ac541310b3e57f2e4fe70b4

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

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

 1using System.Collections;
 2using System.Collections.Generic;
 3using UnityEngine;
 4
 5public class Brady : Boss
 6{
 7    public override string Combat_AI()
 8    {
 9        throw new System.NotImplementedException();
10    }
11
12    public Brady()
13    {
14        stats = new Stats("Brady");
15        description = "Son of the dark lord, he's not too bad.";
16
17        goldDrop = 150;
18        itemsDrop = new Inventory();
19        itemsDrop.generateItem(new ItemInfo(new BottledBlessing(), 1));
20
21        dead = defending = false;
22    }
23}