mirror of
https://github.com/P3D-Legacy/P3D-Legacy.git
synced 2025-07-31 01:35:20 +02:00
Reminder and Deleter in every PokéCenter now Replaces previously useless Mystery Gift NPC area No longer costs an item, but unlocks as you get badges Deleter requires 2 badges, reminder requires 4 badges Fixed weird behavior in their menu screens (double move bug) Moved Draco Meteor tutor to Blackthorn City house Draco Meteor tutor is now more elegantly scripted
45 lines
2.6 KiB
Plaintext
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 |