Secret Jigglypuff

This commit is contained in:
chardub
2025-03-20 10:15:42 -04:00
parent 7f1edad773
commit de1580c54c
27 changed files with 8 additions and 0 deletions

View File

@@ -363,6 +363,12 @@ def pbPlayCry(pkmn, volume = 90, pitch = nil)
GameData::Species.play_cry(pkmn, volume, pitch)
end
def play_cry(species, volume = 90, pitch = 100)
echoln species
GameData::Species.play_cry_from_species(species,0,volume, pitch)
end
# @deprecated This alias is slated to be removed in v20.
def pbPlayCrySpecies(species, form = 0, volume = 90, pitch = nil)
Deprecation.warn_method('pbPlayCrySpecies', 'v20', 'Pokemon.play_cry(species, form)')

View File

@@ -116,7 +116,9 @@ class ClothesShopPresenter < PokemonMartScreen
next if stay_in_menu
return
elsif @adapter.is_a?(HatsMartAdapter)
echoln pbGet(1)
stay_in_menu = playerHatActionsMenu(item)
echoln pbGet(1)
next if stay_in_menu
return
else