Mythos TCG Sim - macOS Installation
=====================================

BEFORE YOU LAUNCH THE GAME:

macOS blocks apps downloaded from the internet by default (a security
feature called Gatekeeper). You need to remove this block once before
the game will run.

How to fix it:

  1. Double-click "OPEN_ME_FIRST.applescript"
     - It will open in Script Editor
  2. Click the triangle "Run" button (top-right of the window)
  3. Close Script Editor
  4. Launch NarutoMythos.app as normal

That's it! You only need to do this once.

What does the script do?

  It removes the quarantine flag that macOS puts on downloaded files
  and ensures the game binary has permission to run. Specifically:

    xattr -c NarutoMythos.app
    xattr -r -d com.apple.quarantine NarutoMythos.app
    chmod +x NarutoMythos.app/Contents/MacOS/*

  These are standard macOS commands and do not modify the game itself.

Alternative (manual):

  If you prefer not to use the script, open Terminal and run:

    xattr -cr /path/to/NarutoMythos.app

  Replace /path/to/ with wherever you unzipped the game.
