Draco Meteor Tutor fix

Now checks for 8 badges
This commit is contained in:
TheOmegaGhost 2020-04-09 23:26:19 -03:00
parent 1a327798d3
commit 0b0a071d06
1 changed files with 19 additions and 14 deletions

View File

@ -1,19 +1,24 @@
version=2
@text.show(If you've come to Dragon's~Den, you must be looking~to master the Dragon-type.)
:if:<pokemon.type1(0)>=dragon <or> <pokemon.type2(0)>=dragon <or> <pokemon.number(0)>=493 <or> <pokemon.number(0)>=773
:if:<pokemon.hasattack(0,434)>=false
@text.show(Your <pokemon.name(0)>~seems capable.*Do you want it to learn~Draco Meteor, the most~powerful Dragon move?)
@options.show(Yes,No)
:when:Yes
@text.show(I shall teach it, then.)
@pokemon.learnattack(0,434)
:when:No
@text.show(Such a waste of potential.)
:endwhen
:else
@text.show(Now that <pokemon.name(0)>~masters the draconic power,~nothing stands a chance!)
:endif
:if:<player.hasbadge(8)>=False
@text.show(However, you must gather~more experience before you~are ready to handle the~power I have to share.)
:else
@text.show(But your <pokemon.name(0)>~is no Dragon-type.*If you catch any,~show it to me.)
@text.show(You are a respectable~trainer...)
:if:<pokemon.type1(0)>=dragon <or> <pokemon.type2(0)>=dragon <or> <pokemon.number(0)>=493 <or> <pokemon.number(0)>=773
:if:<pokemon.hasattack(0,434)>=false
@text.show(Your <pokemon.name(0)>~seems capable.*Do you want it to learn~Draco Meteor, the most~powerful Dragon move?)
@options.show(Yes,No)
:when:Yes
@text.show(I shall teach it, then.)
@pokemon.learnattack(0,434)
:when:No
@text.show(Such a waste of potential.)
:endwhen
:else
@text.show(Now that <pokemon.name(0)>~masters the draconic power,~nothing stands a chance!)
:endif
:else
@text.show(But your <pokemon.name(0)>~is no Dragon-type.*If you catch any,~show it to me.)
:endif
:endif
:end