Added message saving back to compiler, tweaked various messages, fixed typo of constant, fixed missing attr_reader

This commit is contained in:
Maruno17
2023-04-15 20:29:47 +01:00
parent af5256ae0f
commit b9bf3e8b83
30 changed files with 135 additions and 142 deletions

View File

@@ -531,7 +531,7 @@ class PurifyChamberScreen
end
end
if pbCheckPurify
@scene.pbDisplay(_INTL("There is a Pokémon that is ready to open its heart!\1"))
@scene.pbDisplay(_INTL("There is a Pokémon that is ready to open its heart!") + "\1")
@scene.pbCloseSetDetail
pbDoPurify
return false
@@ -579,7 +579,7 @@ class PurifyChamberScreen
pbStorePokemon(@chamber[set].shadow)
@chamber.setShadow(set, nil) # Remove shadow Pokemon from set
if (i + 1) != purifiables.length
@scene.pbDisplay(_INTL("There is another Pokémon that is ready to open its heart!"))
@scene.pbDisplay(_INTL("There is another Pokémon that is ready to open its heart!") + "\1")
if !@scene.pbConfirm(_INTL("Would you like to switch sets?"))
@scene.pbCloseSet
break