Attention: This game does not have a save feature, but people on Hacker News have already found a way to save their progress.

Export the items to a json string:

console.log(JSON.stringify({discoveries: window.$nuxt.$root.$children[2].$children[0].$children[0]._data.discoveries, elements:window.$nuxt.$root.$children[2].$children[0].$children[0]._data.elements}))

Load the items from a json string:

a = PUT YOUR JSON HERE;

window.$nuxt.$root.$children[2].$children[0].$children[0]._data.elements = a.elements; window.$nuxt.$root.$children[2].$children[0].$children[0]._data.discoveries = a.discoveries;

you are viewing a single comment's thread
view the rest of the comments
[–] 2 points 2 years ago (2 children)

Does the unlabeled galaxy emoji combine with anything?

  • source
  • hideshow 4 child comments
  • [–] 3 points 2 years ago (2 children)

    No I think it's bugged. My best guess is some kind of AI is creating the crafting results, so it must be returning an invalid result.

  • source
  • parent
  • hideshow 4 child comments
  • [–] 2 points 2 years ago

    It is, it's using a llama model in the API. If you watch the network tab you can see the calls it makes and modify them yourself, they're simple get requests. It's kinda fun to pick random words and see what the LLM comes up with.

  • source
  • parent