mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-06 15:45:24 +13:00
More regional trades
None of them work properly due to a bug but it's no fault of the events themselves.
This commit is contained in:
parent
dc4fe39707
commit
8b95d592ec
12 changed files with 51 additions and 14 deletions
|
|
@ -7,6 +7,7 @@ FuchsiaPokecenter_TextPointers:
|
|||
dw FuchsiaPokecenterText2
|
||||
dw FuchsiaPokecenterText3
|
||||
dw FuchsiaTradeNurseText
|
||||
dw MarowakTrade
|
||||
|
||||
FuchsiaHealNurseText:
|
||||
script_pokecenter_nurse
|
||||
|
|
@ -21,3 +22,10 @@ FuchsiaPokecenterText3:
|
|||
|
||||
FuchsiaTradeNurseText:
|
||||
script_cable_club_receptionist
|
||||
|
||||
MarowakTrade:
|
||||
text_asm
|
||||
ld a, TRADE_FOR_MAROWAK_A
|
||||
ld [wWhichTrade], a
|
||||
predef DoInGameTradeDialogue
|
||||
jp TextScriptEnd
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ IndigoPlateauLobby_TextPointers:
|
|||
dw IndigoPlateauLobbyText3
|
||||
dw IndigoCashierText
|
||||
dw IndigoTradeNurseText
|
||||
dw ExeggutorTrade
|
||||
|
||||
IndigoHealNurseText:
|
||||
script_pokecenter_nurse
|
||||
|
|
@ -36,4 +37,11 @@ IndigoTradeNurseText:
|
|||
script_cable_club_receptionist
|
||||
|
||||
IndigoCashierText::
|
||||
script_mart ULTRA_BALL, GREAT_BALL, FULL_RESTORE, MAX_POTION, FULL_HEAL, REVIVE, MAX_REPEL
|
||||
script_mart ULTRA_BALL, GREAT_BALL, FULL_RESTORE, MAX_POTION, FULL_HEAL, REVIVE, MAX_REPEL
|
||||
|
||||
ExeggutorTrade:
|
||||
text_asm
|
||||
ld a, TRADE_FOR_EXEGGUTOR_A
|
||||
ld [wWhichTrade], a
|
||||
predef DoInGameTradeDialogue
|
||||
jp TextScriptEnd
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ PewterPokecenter_TextPointers:
|
|||
dw PewterPokecenterText2
|
||||
dw PewterJigglypuffText
|
||||
dw PewterTradeNurseText
|
||||
dw GolemTrade
|
||||
|
||||
PewterHealNurseText:
|
||||
script_pokecenter_nurse
|
||||
|
|
@ -84,3 +85,10 @@ JigglypuffFacingDirectionsEnd:
|
|||
|
||||
PewterTradeNurseText:
|
||||
script_cable_club_receptionist
|
||||
|
||||
GolemTrade:
|
||||
text_asm
|
||||
ld a, TRADE_FOR_GOLEM_A
|
||||
ld [wWhichTrade], a
|
||||
predef DoInGameTradeDialogue
|
||||
jp TextScriptEnd
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ SSAnneBow_TextPointers:
|
|||
dw SSAnne5Text3
|
||||
dw SSAnne5Text4
|
||||
dw SSAnne5Text5
|
||||
dw RapidashTrade
|
||||
|
||||
SSAnne5TrainerHeaders:
|
||||
def_trainers 4
|
||||
|
|
@ -74,3 +75,10 @@ SSAnne5EndBattleText2:
|
|||
SSAnne5AfterBattleText2:
|
||||
text_far _SSAnne5AfterBattleText2
|
||||
text_end
|
||||
|
||||
RapidashTrade:
|
||||
text_asm
|
||||
ld a, TRADE_FOR_RAPIDASH_G
|
||||
ld [wWhichTrade], a
|
||||
predef DoInGameTradeDialogue
|
||||
jp TextScriptEnd
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue