Ejemplo n.º 1
0
    private void ExecOracleCommand(Character player, Character target)
    {
        Debug.Log(MethodBase.GetCurrentMethod());
        int effectValue = SecondaryLogic.OracleCommand(player);

        target.CurrentActionPoint += effectValue;
        StartAnimation(target.objGroup.gameObject, "AP +" + effectValue.ToString(), Fix.COLOR_NORMAL);
    }