summaryrefslogtreecommitdiff
path: root/engine/routines/initlist.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-12-24 20:29:55 -0500
committerGitHub <noreply@github.com>2017-12-24 20:29:55 -0500
commitc2a7216d9b8689591ede817015bf96f263396bb8 (patch)
tree008635aac62c3fdbb446453d308c2255fb0554d9 /engine/routines/initlist.asm
parent0b8b6f9259bedacad55bb4667de5b2bbe6eafda7 (diff)
parentc6b12b07b302b82765181b2521e1e0f2ca5f7725 (diff)
Merge pull request #424 from roukaour/master
Rename a routine and some maps; remove all code from main.asm
Diffstat (limited to 'engine/routines/initlist.asm')
-rw-r--r--engine/routines/initlist.asm54
1 files changed, 54 insertions, 0 deletions
diff --git a/engine/routines/initlist.asm b/engine/routines/initlist.asm
new file mode 100644
index 000000000..e2b7235ab
--- /dev/null
+++ b/engine/routines/initlist.asm
@@ -0,0 +1,54 @@
+InitList: ; 50db9
+ ld a, [wInitListType]
+
+ cp INIT_ENEMYOT_LIST
+ jr nz, .check_party_ot_name
+ ld hl, OTPartyCount
+ ld de, OTPartyMonOT
+ ld a, ENEMY_OT_NAME
+ jr .done
+
+.check_party_ot_name
+ cp INIT_PLAYEROT_LIST
+ jr nz, .check_mon_name
+ ld hl, PartyCount
+ ld de, PartyMonOT
+ ld a, PARTY_OT_NAME
+ jr .done
+
+.check_mon_name
+ cp INIT_MON_LIST
+ jr nz, .check_item_name
+ ld hl, CurMart
+ ld de, PokemonNames
+ ld a, PKMN_NAME
+ jr .done
+
+.check_item_name
+ cp INIT_BAG_ITEM_LIST
+ jr nz, .check_ob_item_name
+ ld hl, NumItems
+ ld de, ItemNames
+ ld a, ITEM_NAME
+ jr .done
+
+.check_ob_item_name
+ ld hl, CurMart
+ ld de, ItemNames
+ ld a, ITEM_NAME
+.done
+ ld [wNamedObjectTypeBuffer], a
+ ld a, l
+ ld [wListPointer], a
+ ld a, h
+ ld [wListPointer + 1], a
+ ld a, e
+ ld [wUnusedD102], a
+ ld a, d
+ ld [wUnusedD102 + 1], a
+ ld bc, ItemAttributes
+ ld a, c
+ ld [wItemAttributesPtr], a
+ ld a, b
+ ld [wItemAttributesPtr + 1], a
+ ret