Merge pull request #403 from mid-kid/master

mid-kid's patches: The Experience
This commit is contained in:
yenatch 2017-12-06 00:04:14 -05:00 committed by GitHub
commit 08ddbe843b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 16 additions and 127 deletions

View File

@ -1,103 +0,0 @@
Music_Nothing
Music_TitleScreen
Music_Route1
Music_Route3
Music_Route12
Music_MagnetTrain
Music_KantoGymLeaderBattle
Music_KantoTrainerBattle
Music_KantoWildPokemonBattle
Music_PokemonCenter
Music_LookHiker
Music_LookLass
Music_LookOfficer
Music_HealPokemon
Music_LavenderTown
Music_Route2
Music_MtMoon
Music_ShowMeAround
Music_GameCorner
Music_Bicycle
Music_HallOfFame
Music_ViridianCity
Music_CeladonCity
Music_TrainerVictory
Music_WildPokemonVictory
Music_GymLeaderVictory
Music_MtMoonSquare
Music_Gym
Music_PalletTown
Music_ProfOaksPokemonTalk
Music_ProfOak
Music_LookRival
Music_AfterTheRivalFight
Music_Surf
Music_Evolution
Music_NationalPark
Music_Credits
Music_AzaleaTown
Music_CherrygroveCity
Music_LookKimonoGirl
Music_UnionCave
Music_JohtoWildPokemonBattle
Music_JohtoTrainerBatle
Music_Route30
Music_EcruteakCity
Music_VioletCity
Music_JohtoGymLeaderBattle
Music_ChampionBattle
Music_RivalBattle
Music_RocketBattle
Music_ElmsLab
Music_DarkCave
Music_Route29
Music_Route36
Music_SSAqua
Music_LookYoungster
Music_LookBeauty
Music_LookRocket
Music_LookPokemaniac
Music_LookSage
Music_NewBarkTown
Music_GoldenrodCity
Music_VermilionCity
Music_PokemonChannel
Music_PokeFluteChannel
Music_TinTower
Music_SproutTower
Music_BurnedTower
Music_Lighthouse
Music_LakeOfRage
Music_IndigoPlateau
Music_Route37
Music_RocketHideout
Music_DragonsDen
Music_JohtoWildPokemonBattleNight
Music_RuinsOfAlphRadioSignal
Music_SuccessfulCapture
Music_Route26
Music_Mom
Music_VictoryRoad
Music_PokemonLullaby
Music_PokemonMarch
Music_GoldSilverOpening
Music_GoldSilverOpening2
Music_MainMenu
Music_RuinsOfAlphInterior
Music_RocketTheme
Music_DancingHall
Music_BugCatchingContestResults
Music_BugCatchingContest
Music_LakeOfRageRocketsRadioSignal
Music_Printer
Music_PostCredits
Music_Clair
Music_MobileAdapterMenu
Music_MobileAdapter
Music_BuenasPassword
Music_LookMysticalMan
Music_CrystalOpening
Music_BattleTowerTheme
Music_SuicuneBattle
Music_BattleTowerLobby
Music_MobileCenter

View File

@ -1,12 +1,4 @@
; See song sections in main.asm: ; See song sections in audio.asm.
; Songs i
; Songs ii
; Songs iii
; Songs I
; Songs II
; Songs III
; Songs IV
; Songs V
; e906e ; e906e
dba Music_Nothing ; 0xe91a3 dba Music_Nothing ; 0xe91a3

View File

@ -2995,7 +2995,7 @@ SelectBattleMon: ; 3d329
PickPartyMonInBattle: ; 3d33c PickPartyMonInBattle: ; 3d33c
.loop .loop
ld a, $2 ; Which PKMN? ld a, PARTYMENUACTION_SWITCH ; Which PKMN?
ld [PartyMenuActionText], a ld [PartyMenuActionText], a
call JumpToPartyMenuAndPrintText call JumpToPartyMenuAndPrintText
call SelectBattleMon call SelectBattleMon

View File

@ -416,16 +416,16 @@ ITEMMENU_CLOSE EQU 6
; PartyMenuActionText ; PartyMenuActionText
const_def const_def
const PARTYMENUACTION_00 const PARTYMENUACTION_CHOOSE_POKEMON
const PARTYMENUACTION_HEALING_ITEM const PARTYMENUACTION_HEALING_ITEM
const PARTYMENUACTION_02 const PARTYMENUACTION_SWITCH
const PARTYMENUACTION_TEACH_TM const PARTYMENUACTION_TEACH_TMHM
const PARTYMENUACTION_04 const PARTYMENUACTION_MOVE
const PARTYMENUACTION_EVO_STONE const PARTYMENUACTION_EVO_STONE
const PARTYMENUACTION_06 const PARTYMENUACTION_GIVE_MON
const PARTYMENUACTION_07 const PARTYMENUACTION_GIVE_MON_FEMALE ; unused
const PARTYMENUACTION_08 const PARTYMENUACTION_GIVE_ITEM
const PARTYMENUACTION_MOBILE const PARTYMENUACTION_MOBILE ; mobile
const_value set $f0 const_value set $f0
const PARTYMENUTEXT_HEAL_PSN const PARTYMENUTEXT_HEAL_PSN

View File

@ -39,7 +39,7 @@ NPCTrade:: ; fcba8
jr c, .done jr c, .done
; Select givemon from party ; Select givemon from party
ld b, 6 ld b, PARTYMENUACTION_GIVE_MON
callba SelectTradeOrDaycareMon callba SelectTradeOrDaycareMon
ld a, TRADE_CANCEL ld a, TRADE_CANCEL
jr c, .done jr c, .done

View File

@ -603,7 +603,7 @@ GiveItem: ; 103fd
push af push af
res NO_TEXT_SCROLL, a res NO_TEXT_SCROLL, a
ld [Options], a ld [Options], a
ld a, $8 ld a, PARTYMENUACTION_GIVE_ITEM
ld [PartyMenuActionText], a ld [PartyMenuActionText], a
call ClearBGPalettes call ClearBGPalettes
callba LoadPartyMenuGFX callba LoadPartyMenuGFX

View File

@ -745,7 +745,7 @@ SwitchPartyMons: ; 12aec
callba HoldSwitchmonIcon callba HoldSwitchmonIcon
callba InitPartyMenuNoCancel callba InitPartyMenuNoCancel
ld a, 4 ld a, PARTYMENUACTION_MOVE
ld [PartyMenuActionText], a ld [PartyMenuActionText], a
callba WritePartyMenuTilemap callba WritePartyMenuTilemap
callba PrintPartyMenuText callba PrintPartyMenuText

View File

@ -80,7 +80,7 @@ ChooseMonToLearnTMHM_NoRefresh: ; 2c80a
callba LoadPartyMenuGFX callba LoadPartyMenuGFX
callba InitPartyMenuWithCancel callba InitPartyMenuWithCancel
callba InitPartyMenuGFX callba InitPartyMenuGFX
ld a, $3 ; TeachWhichPKMNString ld a, PARTYMENUACTION_TEACH_TMHM
ld [PartyMenuActionText], a ld [PartyMenuActionText], a
.loopback .loopback
callba WritePartyMenuTilemap callba WritePartyMenuTilemap

View File

@ -123,7 +123,7 @@ DayCareAskDepositPokemon: ; 16798
jr c, .OnlyOneMon jr c, .OnlyOneMon
ld a, DAYCARETEXT_WHICH_ONE ld a, DAYCARETEXT_WHICH_ONE
call PrintDayCareText call PrintDayCareText
ld b, 6 ld b, PARTYMENUACTION_GIVE_MON
callba SelectTradeOrDaycareMon callba SelectTradeOrDaycareMon
jr c, .Declined jr c, .Declined
ld a, [CurPartySpecies] ld a, [CurPartySpecies]

View File

@ -316,7 +316,7 @@ Function4aa25: ; 4aa25
call Function4aad3 call Function4aad3
Function4aa34: ; 4aa34 Function4aa34: ; 4aa34
ld a, $9 ld a, PARTYMENUACTION_MOBILE
ld [PartyMenuActionText], a ld [PartyMenuActionText], a
callba WritePartyMenuTilemap callba WritePartyMenuTilemap
xor a xor a