Replies: 1 comment
-
Achievement definitions only exist in the database. There's no repository to download them from. If you load the game in any of the standalone emulators, the data (including the achievement definitions) is stored in the You might also be interested in looking at RATools, which already provides a DSL abstraction for creating achievements.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have been working on a game specific DSLs to create achievements. Instead of directly working with binary data I abstract it away and provide means to access stats.
The prototype works for Pokemon Red. I can query for conditions like
receives item MasterBall
,receives special item Pokedex
orcaught 5 water pokemon
without having to work with the memory directly.I was wondering if there is a way to download achievements from the retroachievements.org that I can port over to my DSL and see if my implementation works properly.
I cannot find any repository containing the achievements. And there does not seem to be a download option on the website either.
Beta Was this translation helpful? Give feedback.
All reactions