all repos — RPG @ 10288b73050092c823f0171d1b1b7bd9c1d8f1f4

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

Assets/Scripts/Battle/BadGuy.cs (view raw)

 1using System.Collections;
 2using System.Collections.Generic;
 3using UnityEngine;
 4
 5public abstract class BadGuy : Fighter
 6{
 7    [Header("Enemy stuff")]
 8    public int goldDrop;
 9    public Inventory itemsDrop;
10
11    public abstract string Combat_AI();
12
13    public override void GetGUI()
14    {
15        damage_tooltip = GameObject.Find("en_damage");
16    }
17}