Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 03:07, 12 July 2026 by Hyatt (talk | contribs) (Created page with "{{Infobox Vita Homebrews |title=MOTHER Encore Vita |image=MOTHEREncoreVita.png |description=Port of MOTHER Encore for PSVita. |author=Wolff |lastupdated=2026/07/09 |type=Role Playing |version=0.2b |license=MIT |download=https://dlhb.gamebrew.org/vitahomebrews/MOTHEREncoreVita.7z |website=https://www.reddit.com/r/vitahacks/comments/1urf516/mother_encore_act_2_psvita_port_beta/ |source=https://github.com/WolffsRoom/MotherEncore-PSVita |donation= }} {{#seo: |title=Vita Home...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
MOTHER Encore Vita
General
AuthorWolff
TypeRole Playing
Version0.2b
LicenseMIT License
Last Updated2026/07/09
Links
Download
Website
Source

MOTHER: Encore (ACT 2) - PS Vita Port is a native PlayStation Vita port of MOTHER: Encore, a free fan-made reimagining of MOTHER 1, adapted from its original Godot Engine PC release. The repository contains the source patches, control rewrites, and tooling created to make the game run natively on PS Vita hardware. The port is based on MOTHER: Encore ACT 2 - v0.4.0.3 (Windows), with the original game created by Pkdotts and team.

About The Game

MOTHER: Encore is a free, unofficial fan reimagining of MOTHER 1 and is not affiliated with Nintendo or Shigesato Itoi. It is described as offering a uniquely different experience from the original and is not intended as a replacement for it. This PS Vita port is likewise unofficial and non-commercial; MOTHER: Encore is redistributed under its MIT license, with full credit to the original authors.

In the story, set in 1988 in a small rural American town, a boy named Ninten wakes up to strange phenomena — objects coming to life, animals going wild, people vanishing, and a shadowy cloud atop Mt. Itoi. Equipped with PSI powers and following his Great Grandfather's footsteps, Ninten sets out to uncover these mysteries, collecting Eight Melodies and exploring dungeons along the way. The game is made entirely from the ground up using the Godot Engine and currently contains 2 of a planned 8 total Acts, each intended as a content update adding new areas. The project is directed by Pkdotts.

At the time of this release, overall progress on the PS Vita port is listed at approximately 55%, running on Godot 3.5 RC5, and its state is described as "Playable," with the accompanying note: "Bugs, crashes, poor performance, but it's playable (I guess)."

Installation

Every release ships two files: the .vpk (the app itself) and a -GameData.zip (the game data, i.e. game_data/game.pck). Both are required.

  1. Head to the Releases tab.
  2. Download the latest MotherEncore-Vita-x.x.x.vpk and MotherEncore-Vita-x.x.x-GameData.zip.
  3. Install the .vpk on the PS Vita using VitaShell or FMVita (a personalized VitaShell fork by the same author).
  4. Extract the -GameData.zip to get a game_data folder containing game.pck.
  5. Connect the Vita via FTP or USB and copy the game_data folder into ux0:app/MOTHER001/, so that the file ends up exactly at ux0:app/MOTHER001/game_data/game.pck.

When updating, both the new .vpk and the new -GameData.zip should always be installed together, since a newer VPK is not guaranteed to work with an older game.pck, and vice versa. Save files are not lost when uninstalling or updating, as they are stored under ux0:data/godot/app_userdata/MOTHER Encore/....

Controls

Control Action
Up / Down / Left / Right or Left Analog Stick Move
Cross (X) Confirm / Interact
Triangle Menu
Circle Cancel / Back
Square Crouch / Telepathy (hold)
Right Analog Stick Camera
L1 Previous party member
R1 Next party member
Touchscreen, left half (emulated L2) Scope / markers
Touchscreen, right half (emulated R2) Crouch / Telepathy

The PS Vita has no physical L2/R2 (nor L3/R3) buttons; these are emulated by touching the left and right halves of the front touchscreen.

Improvements & Adaptations for the PS Vita

Since this port is based on the Godot version, several parts of the game were reworked to make it feel native on the console and fit within the Vita's ~365 MB memory budget:

Memory & loading (boot crash fix):

  • Lazy UI loading – the UI manager previously preloaded around 11 heavy scenes (battle system, shops, storage, ATM, save/keyboard/ocarina screens, dialogue boxes) at boot; these now load on demand.
  • Lazy map loading – maps now load individually when opened, instead of every map being instanced at startup.
  • Result: boot RAM usage dropped from 365/365 MB (an out-of-memory crash) to around 181/365 MB, letting the game boot to the title screen and beyond.

Data packaging:

  • The game is fully data-driven (900+ .yaml/.ecs/.dat files). These raw data files were explicitly included in the Vita export so the runtime stops looping on missing data.

Engine compatibility (Godot 3.6 → 3.5 Vita fork):

  • Replaced a Godot 3.6-only API call (is_node_ready) with its 3.5 equivalent and restored a dropped class_name registration from the decompile.

Controls and input:

  • Gamepad-first prompts – on-screen prompts show real PS Vita buttons instead of PC keyboard keys by default.
  • Touch L2/R2 – the Vita's missing L2/R2 buttons are mapped to the left/right halves of the touchscreen.
  • PC hints removed – the title screen's "Fullscreen (F11) / Window Size (F5)" hints are hidden on console.

Display:

  • Adapted the game to the Vita's 960×544 screen.

Media

MOTHER: Encore Act 2 LAUNCH TRAILER (Mother Encore)

Screenshots

MOTHEREncoreVita-01.png

MOTHEREncoreVita-02.png

MOTHEREncoreVita-03.png

Known Issues

This is described as an early technical beta, with the following rough edges noted:

  • Battle crashes – the game still crashes when entering the first battle; a fix is planned for the next version.
  • Performance – GPU load is high and frame rate is currently low in the overworld/title screen; performance tuning is still in progress.
  • Some scenes are still being optimized for the PowerVR GPU.
  • Three unrecoverable developer/joke dialogue sheets from the decompile (Snowman, Testing, shitpost) were removed, as they are not part of normal gameplay.

Changelog

v0.2b

  • Fixed touch L2/R2: touching the left/right half of the screen now correctly presses L2 (Scope) and R2 (Crouch/Telepathy) in-game, not just on the polling checks.

v0.1b

  • First Release.

Credits

  • MOTHER: Encore – created by Pkdotts and team: mother-encore.itch.io/mother-encore
  • Users are encouraged to support the original developers and the official MOTHER series.
  • Main tools used in creating this port:
    • GDRE Tools – used to extract the original PCK from the free Windows release so the project could be reconstructed and opened in the Godot Engine.
    • Godot PSVita – used to compile the final .vpk for the Vita and adapt the essential game/engine files for the console.
    • vita-parse-core – used to symbolicate and analyze the Vita crash dumps (.psp2dmp) to trace the boot crash down to an out-of-memory condition.
  • The author's other work can be followed at: wolffsroom.wordpress.com

External links

Advertising: