1. Select an enemy
  2. A list of ACTions / ITEM is shown
  3. Select ACTion or ITEM
    1. ITEM will need to be clicked twice. As one click will show the description. For example, the Health Potion item shows “Restores health points.”
  4. Call the event it represents.
  5. The event will raise the ACTModules script ApplyEffect()
		public override void OnEventRaised() => ApplyACT();
    public abstract void ApplyACT();
  1. Each ACTion/ITEM needs to create a new script from the base class ACTModule.
  2. In this new script, we can define how we’ll treat the action. For example, ITEM “Shiny Thing”, which is an example of how MAGIC would look, works like this:
		[SerializeField] BattleHandler battleH;

    [Tooltip("From 0 <-> 100%")][Range(0,100)]
    [SerializeField] int magicCost;

    public override void ApplyACT()
    {
        battleH.TryUseMagic(magicCost, SuccessfullShine, FailureShine);
    }

    private void SuccessfullShine()
    {
        battleH.flavorText.Type("* They completely like it! As much as you do, maybe more! \\n" +
    " * I think you'll have to stay wide eye open from now on, tho.", () => battleH.NextPlayerTurn());
    }
    private void FailureShine()
    {
        battleH.flavorText.Type("* They don't seem to quite like it as much as you do... \\n" +
    " * It's okay, tho... It's them, not you...", () => battleH.NextPlayerTurn());
    }

For testing purposes, you can add as many items you want and select FIX INVENTORY, where you’ll merge all items.

Untitled

Current limitation is that you can only display 6 items in the battle.