P3D-Legacy/P3D/Content/Data/Scripts/movereminder.dat

45 lines
2.6 KiB
Plaintext

version=2
@text.show(Hi there, here we offer~the Move Reminder service!)
:if:<register.registered(reminder_first)>=false
@text.show(With my sharp memory and~unmatched move knowledge,~I can teach your Pokémon~any move it forgot, and~maybe even more!)
@register.register(reminder_first)
:endif
:if:<player.badges><4
@text.show(Oh, I'm afraid you'll~need at least 4 badges~to use the service.)
@text.show(We hope to see you~again!)
@level.wait(5)
@player.turnto(3)
:end
:else
@text.show(Would you like me to teach~your Pokémon a move?)
@options.show(Yes,No)
:when:Yes
@text.show(Which Pokémon should~remember a forgotten move?)
@pokemon.select(1)
:if:<pokemon.selected>>-1
@text.show(Which move should your~<pokemon.name(<pokemon.selected>)> remember?)
@screen.teachmoves(<pokemon.selected>)
:if:<pokemon.learnedtutormove>=true
@text.show(I'm sure <pokemon.name(<pokemon.selected>)>~will enjoy its new move.)
:endif
@text.show(We hope to see you~again!)
@level.wait(5)
@player.turnto(3)
:end
:else
@text.show(We hope to see you~again!)
@level.wait(5)
@player.turnto(3)
:end
:endif
:when:No
@text.show(We hope to see you~again!)
@level.wait(5)
@player.turnto(3)
:endwhen
:endif
:end