Project Directories - pk-hack/CoilSnake GitHub Wiki

The Project Directory

When you decompile an EarthBound ROM using CoilSnake, the result is a CoilSnake Project—a directory on your computer that contains numerous folders and files, typically in the YML or PNG format.

While the wide range of customization options may seem daunting at first, each file is logically named and organized to simplify navigation and management.

This section provides an overview of the project directory and its structure. Detailed explanations of individual files and their functions will follow in subsequent chapters.


Key Components of the Project Directory

  • Project.snake File
    This file is the cornerstone of the project, providing CoilSnake with metadata about the project. It includes information about resource file locations, the ROM type (e.g., EarthBound), and the CoilSnake version compatibility. Direct modification of this file is not required or recommended.

  • YML Files
    These files are among the most prevalent in the project directory and define various game settings. For example, the dont_care_names.yml file contains the default name options for characters. Written in YAML format, these files feature a straightforward syntax. However, should you encounter any confusion, extensive documentation is available online.

    Within these files, you’ll often see references to data pointers, such as 0x82ab or $ef8543. These pointers direct EarthBound to the corresponding resources in the ROM.


Key Directories and Their Functions

  • BattleBGs Directory
    Contains the visual assets for battle backgrounds, which are dynamically transformed during battles.

  • BattleSprites Directory
    Houses enemy sprites used in battle scenes.

  • ccscript Directory
    Serves as the location for all CCScript dialogue files, which will be compiled into the ROM.

  • Fonts Directory
    Contains the fonts used in EarthBound, including unique styles like the Saturnian font.

  • Logos Directory
    Stores logos displayed during the game's opening sequences.

  • SpriteGroups Directory
    Includes character and NPC sprites used for animations on the world map.

  • Tilesets Directory and map_tiles.map
    The Tilesets directory contains the map tiles, while map_tiles.map organizes those tiles into game locations. These files should not be manually modified.

  • TownMaps Directory
    Contains the small town maps displayed when the player uses the Town Map item.

  • WindowGraphics Directory
    Stores GUI elements such as HUD components and the various window color schemes available to players.


Modifying the Game

To modify the game, simply adjust the contents of the existing files to suit your needs. Note that it is currently not possible to add new files to the project, except for CCScript files. Any new CCScript files must be placed within the ccscript directory, where they will be automatically recognized by CoilSnake.