mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
const_def N
This commit is contained in:
parent
9e368eee1f
commit
08891da822
@ -708,7 +708,7 @@ BATTLEANIMSTRUCT_LENGTH EQU const_value
|
||||
const BATTLEANIMOAMSET_D7
|
||||
|
||||
; BattleBGEffects indexes (see engine/battle_anims/bg_effects.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const ANIM_BG_FLASH_INVERTED
|
||||
const ANIM_BG_FLASH_WHITE
|
||||
const ANIM_BG_WHITE_HUES
|
||||
@ -764,7 +764,7 @@ const_value set 1
|
||||
const ANIM_BG_35
|
||||
|
||||
; AnimObjGFX indexes (see data/battle_anims/object_gfx.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const ANIM_GFX_HIT
|
||||
const ANIM_GFX_CUT
|
||||
const ANIM_GFX_FIRE
|
||||
|
@ -55,7 +55,7 @@ MOVE_LENGTH EQU const_value
|
||||
; indexes for:
|
||||
; - PlayerStats and EnemyStats (see wram.asm)
|
||||
; - party_struct and battle_struct members (see macros/wram.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const STAT_HP
|
||||
const STAT_ATK
|
||||
const STAT_DEF
|
||||
@ -76,7 +76,7 @@ ATKDEFDV_SHINY EQU $EA
|
||||
SPDSPCDV_SHINY EQU $AA
|
||||
|
||||
; battle classes (wBattleMode values)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const WILD_BATTLE
|
||||
const TRAINER_BATTLE
|
||||
|
||||
@ -151,7 +151,7 @@ const_value set 1
|
||||
|
||||
; status condition bit flags
|
||||
SLP EQU %111 ; 0-7 turns
|
||||
const_value set 3
|
||||
const_def 3
|
||||
const PSN
|
||||
const BRN
|
||||
const FRZ
|
||||
|
@ -47,7 +47,7 @@ BATTLE_TOWER_STRUCT_LENGTH EQU $e0 ; NAME_LENGTH + BATTLETOWER_PARTY_LENGTH * (P
|
||||
MOBILE_EVENT_OBJECT_GS_BALL EQU $b
|
||||
|
||||
; BattleTowerText arguments (see engine/events/battle_tower/trainer_text.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const BATTLETOWERTEXT_INTRO
|
||||
const BATTLETOWERTEXT_WIN_TEXT
|
||||
const BATTLETOWERTEXT_LOSS_TEXT
|
||||
|
@ -105,7 +105,7 @@
|
||||
const PAAD_TESTING
|
||||
|
||||
; CreditsScript indexes (see data/credits_script.asm)
|
||||
const_value set -7
|
||||
const_def -7
|
||||
const CREDITS_THEEND
|
||||
const CREDITS_WAIT2
|
||||
const CREDITS_MUSIC
|
||||
|
@ -10,7 +10,7 @@
|
||||
ITEMATTR_STRUCT_LENGTH EQU const_value
|
||||
|
||||
; item types
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const ITEM ; 1
|
||||
const KEY_ITEM ; 2
|
||||
const BALL ; 3
|
||||
@ -65,7 +65,7 @@ MAIL_STRUCT_LENGTH EQU $2f ; mailmsg struct
|
||||
const HELD_7
|
||||
const HELD_CLEANSE_TAG
|
||||
|
||||
const_value set 10
|
||||
const_def 10
|
||||
const HELD_HEAL_POISON
|
||||
const HELD_HEAL_FREEZE
|
||||
const HELD_HEAL_BURN
|
||||
@ -74,7 +74,7 @@ const_value set 10
|
||||
const HELD_HEAL_STATUS
|
||||
const HELD_HEAL_CONFUSION
|
||||
|
||||
const_value set 20
|
||||
const_def 20
|
||||
const HELD_PREVENT_POISON
|
||||
const HELD_PREVENT_BURN
|
||||
const HELD_PREVENT_FREEZE
|
||||
@ -82,7 +82,7 @@ const_value set 20
|
||||
const HELD_PREVENT_PARALYZE
|
||||
const HELD_PREVENT_CONFUSE
|
||||
|
||||
const_value set 30
|
||||
const_def 30
|
||||
const HELD_30
|
||||
const HELD_ATTACK_UP
|
||||
const HELD_DEFENSE_UP
|
||||
@ -93,12 +93,12 @@ const_value set 30
|
||||
const HELD_EVASION_UP
|
||||
const HELD_38
|
||||
|
||||
const_value set 40
|
||||
const_def 40
|
||||
const HELD_40
|
||||
const HELD_41
|
||||
const HELD_METAL_POWDER
|
||||
|
||||
const_value set 50
|
||||
const_def 50
|
||||
const HELD_NORMAL_BOOST
|
||||
const HELD_FIGHTING_BOOST
|
||||
const HELD_FLYING_BOOST
|
||||
@ -117,7 +117,7 @@ const_value set 50
|
||||
const HELD_DARK_BOOST
|
||||
const HELD_STEEL_BOOST
|
||||
|
||||
const_value set 70
|
||||
const_def 70
|
||||
const HELD_CATCH_CHANCE
|
||||
const HELD_71
|
||||
const HELD_ESCAPE
|
||||
|
@ -18,7 +18,7 @@ MAP_NONE EQU 0
|
||||
NUM_MAPDEF_ATTRIBUTES EQU const_value
|
||||
|
||||
; map environments (wEnvironment)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const TOWN
|
||||
const ROUTE
|
||||
const INDOOR
|
||||
|
@ -1,6 +1,6 @@
|
||||
; hMapEntryMethod values
|
||||
; MapSetupScripts indexes (see data/maps/setup_scripts.asm)
|
||||
const_value set $f1
|
||||
const_def $f1
|
||||
const MAPSETUP_WARP ; f1
|
||||
const MAPSETUP_CONTINUE ; f2
|
||||
const MAPSETUP_RELOADMAP ; f3
|
||||
@ -67,7 +67,7 @@ const_value set $f1
|
||||
map_end EQU -1
|
||||
|
||||
; callback types
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const MAPCALLBACK_TILES
|
||||
const MAPCALLBACK_OBJECTS
|
||||
const MAPCALLBACK_CMDQUEUE
|
||||
|
@ -35,8 +35,8 @@
|
||||
|
||||
; MonMenuOptions indexes (see data/mon_menu.asm)
|
||||
; used by PokemonActionSubmenu (see engine/start_menu.asm)
|
||||
const_value set 1
|
||||
; moves
|
||||
const_def 1
|
||||
; moves
|
||||
const MONMENUITEM_CUT ; 1
|
||||
const MONMENUITEM_FLY ; 2
|
||||
const MONMENUITEM_SURF ; 3
|
||||
@ -51,7 +51,7 @@ const_value set 1
|
||||
const MONMENUITEM_ROCKSMASH ; 12
|
||||
const MONMENUITEM_MILKDRINK ; 13
|
||||
const MONMENUITEM_SWEETSCENT ; 14
|
||||
; options
|
||||
; options
|
||||
const MONMENUITEM_STATS ; 15
|
||||
const MONMENUITEM_SWITCH ; 16
|
||||
const MONMENUITEM_ITEM ; 17
|
||||
@ -84,7 +84,7 @@ HMENURETURN_ASM EQU %11111111
|
||||
const PARTYMENUACTION_GIVE_ITEM
|
||||
const PARTYMENUACTION_MOBILE ; mobile
|
||||
; PrintPartyMenuActionText arguments (see engine/party_menu.asm)
|
||||
const_value set $f0
|
||||
const_def $f0
|
||||
const PARTYMENUTEXT_HEAL_PSN
|
||||
const PARTYMENUTEXT_HEAL_BRN
|
||||
const PARTYMENUTEXT_HEAL_FRZ
|
||||
|
@ -18,7 +18,7 @@
|
||||
; - BitmasksPointers (see gfx/pokemon/bitmask_pointers.asm)
|
||||
; - FramesPointers (see gfx/pokemon/frame_pointers.asm)
|
||||
; - Footprints (see gfx/footprints.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const BULBASAUR ; 01
|
||||
const IVYSAUR ; 02
|
||||
const VENUSAUR ; 03
|
||||
@ -284,7 +284,7 @@ NUM_POKEMON EQU const_value +- 1
|
||||
; - UnownAnimationIdlePointers (see gfx/pokemon/unown_idle_pointers.asm)
|
||||
; - UnownBitmasksPointers (see gfx/pokemon/unown_bitmask_pointers.asm)
|
||||
; - UnownFramesPointers (see gfx/pokemon/unown_frame_pointers.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const UNOWN_A ; 1
|
||||
const UNOWN_B ; 2
|
||||
const UNOWN_C ; 3
|
||||
|
@ -45,7 +45,7 @@ GENDERLESS EQU 255
|
||||
const SLOW
|
||||
|
||||
; BaseEggGroups values
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const MONSTER ; 1
|
||||
const AMPHIBIAN ; 2
|
||||
const INSECT ; 3
|
||||
@ -131,7 +131,7 @@ NUM_HOF_TEAMS = 30
|
||||
|
||||
|
||||
; evolution types (used in data/pokemon/evos_attacks.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const EVOLVE_LEVEL
|
||||
const EVOLVE_ITEM
|
||||
const EVOLVE_TRADE
|
||||
@ -139,13 +139,13 @@ const_value set 1
|
||||
const EVOLVE_STAT
|
||||
|
||||
; EVOLVE_HAPPINESS triggers
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const TR_ANYTIME
|
||||
const TR_MORNDAY
|
||||
const TR_NITE
|
||||
|
||||
; EVOLVE_STAT triggers
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const ATK_GT_DEF
|
||||
const ATK_LT_DEF
|
||||
const ATK_EQ_DEF
|
||||
|
@ -1,5 +1,5 @@
|
||||
; wPrinterStatus
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const PRINTER_STATUS_CHECKING
|
||||
const PRINTER_STATUS_TRANSMITTING
|
||||
const PRINTER_STATUS_PRINTING
|
||||
|
@ -76,7 +76,7 @@ RETVAR_EXECUTE EQU (2 << 6)
|
||||
|
||||
|
||||
; PlayerEventScriptPointers indexes (see engine/events.asm)
|
||||
const_value set -1
|
||||
const_def -1
|
||||
const PLAYEREVENT_MAPSCRIPT
|
||||
const PLAYEREVENT_NONE
|
||||
const PLAYEREVENT_SEENBYTRAINER
|
||||
@ -168,7 +168,7 @@ EMOTE_MEM EQU -1
|
||||
|
||||
; fruittree arguments
|
||||
; FruitTreeItems indexes (see data/items/fruit_trees.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const FRUITTREE_ROUTE_29 ; 01
|
||||
const FRUITTREE_ROUTE_30_1 ; 02
|
||||
const FRUITTREE_ROUTE_38 ; 03
|
||||
@ -275,7 +275,7 @@ NUM_UNOWN_PUZZLES EQU const_value
|
||||
const UNOWNWORDS_HO_OH ; 3
|
||||
|
||||
; MoveTutor writebyte arguments
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const MOVETUTOR_FLAMETHROWER ; 1
|
||||
const MOVETUTOR_THUNDERBOLT ; 2
|
||||
const MOVETUTOR_ICE_BEAM ; 3
|
||||
|
@ -106,7 +106,7 @@
|
||||
const SPRITE_STANDING_YOUNGSTER ; 66
|
||||
|
||||
; SpriteMons indexes (see data/sprites/sprite_mons.asm)
|
||||
const_value set $80
|
||||
const_def $80
|
||||
SPRITE_POKEMON EQU const_value
|
||||
const SPRITE_UNOWN ; 80
|
||||
const SPRITE_GEODUDE ; 81
|
||||
@ -145,12 +145,12 @@ SPRITE_POKEMON EQU const_value
|
||||
const SPRITE_HO_OH ; a2
|
||||
|
||||
; special GetMonSprite values (see engine/overworld.asm)
|
||||
const_value set $e0
|
||||
const_def $e0
|
||||
const SPRITE_DAY_CARE_MON_1 ; e0
|
||||
const SPRITE_DAY_CARE_MON_2 ; e1
|
||||
|
||||
; VariableSprites indexes (see wram.asm)
|
||||
const_value set $f0
|
||||
const_def $f0
|
||||
SPRITE_VARS EQU const_value
|
||||
const SPRITE_CONSOLE ; f0
|
||||
const SPRITE_DOLL_1 ; f1
|
||||
|
@ -9,7 +9,7 @@
|
||||
NUM_SPRITEDATA_FIELDS EQU const_value
|
||||
|
||||
; sprite types
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const WALKING_SPRITE ; 1
|
||||
const STANDING_SPRITE ; 2
|
||||
const STILL_SPRITE ; 3
|
||||
@ -27,7 +27,7 @@ const_value set 1
|
||||
|
||||
; object_events set bit 3 so as not to use the sprite's default palette
|
||||
; MapObjectPals indexes (see gfx/overworld/npc_sprites.pal)
|
||||
const_value set (1 << 3)
|
||||
const_def 1 << 3
|
||||
const PAL_NPC_RED ; 8
|
||||
const PAL_NPC_BLUE ; 9
|
||||
const PAL_NPC_GREEN ; a
|
||||
|
@ -9,7 +9,7 @@ TRAINER_CLASS_NAME_LENGTH EQU 13
|
||||
NAME_LENGTH_JAPANESE EQU 6
|
||||
|
||||
; GetName types (see home/names.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const MON_NAME ; 1
|
||||
const MOVE_NAME ; 2
|
||||
const DUMMY_NAME ; 3
|
||||
@ -31,7 +31,7 @@ TEXTBOX_Y EQU SCREEN_HEIGHT - TEXTBOX_HEIGHT
|
||||
TEXTBOX_INNERY EQU TEXTBOX_Y + 2
|
||||
|
||||
; PrintNum bit flags
|
||||
const_value set 5
|
||||
const_def 5
|
||||
const PRINTNUM_MONEY_F ; 5
|
||||
const PRINTNUM_RIGHTALIGN_F ; 6
|
||||
const PRINTNUM_LEADINGZEROS_F ; 7
|
||||
|
@ -1,5 +1,5 @@
|
||||
; Tilesets indexes (see data/tilesets.asm)
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const TILESET_JOHTO ; 01
|
||||
const TILESET_JOHTO_MODERN ; 02
|
||||
const TILESET_KANTO ; 03
|
||||
|
@ -21,7 +21,7 @@ GAMETIMERPAUSE_TIMER_PAUSED_F EQU 0
|
||||
GAMETIMERPAUSE_MOBILE_7_F EQU 7
|
||||
|
||||
; Options:: ; cfcc
|
||||
const_value set 4
|
||||
const_def 4
|
||||
const NO_TEXT_SCROLL ; 4
|
||||
const STEREO ; 5
|
||||
const BATTLE_SHIFT ; 6
|
||||
@ -60,7 +60,7 @@ GBPRINTER_DARKEST EQU $7f
|
||||
const MENU_ACCOUNT ; 0
|
||||
|
||||
; WalkingDirection:: ; d043
|
||||
const_value set -1
|
||||
const_def -1
|
||||
const STANDING ; -1
|
||||
const DOWN ; 0
|
||||
const UP ; 1
|
||||
|
@ -1,5 +1,5 @@
|
||||
; MonMenuOptionStrings indexes
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const MONMENUVALUE_STATS ; 1
|
||||
const MONMENUVALUE_SWITCH ; 2
|
||||
const MONMENUVALUE_ITEM ; 3
|
||||
|
@ -24,7 +24,7 @@
|
||||
## Object constants
|
||||
|
||||
<pre>
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const <i>MAPNAME</i>_<i>OBJECTNAME</i>
|
||||
</pre>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set $6a
|
||||
const_def $6a
|
||||
const DEBUGTEST_UP_ARROW ; $6a
|
||||
const DEBUGTEST_TICKS ; $6b
|
||||
const DEBUGTEST_WHITE ; $6c
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 1
|
||||
const_def 1
|
||||
const PINK_PAGE ; 1
|
||||
const GREEN_PAGE ; 2
|
||||
const BLUE_PAGE ; 3
|
||||
|
@ -26,7 +26,11 @@ ENDM
|
||||
; Enumerate constants
|
||||
|
||||
const_def: MACRO
|
||||
if _NARG >= 1
|
||||
const_value = \1
|
||||
else
|
||||
const_value = 0
|
||||
endc
|
||||
ENDM
|
||||
|
||||
const: MACRO
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const AZALEAGYM_BUGSY
|
||||
const AZALEAGYM_BUG_CATCHER1
|
||||
const AZALEAGYM_BUG_CATCHER2
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const AZALEAMART_CLERK
|
||||
const AZALEAMART_COOLTRAINER_M
|
||||
const AZALEAMART_BUG_CATCHER
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const AZALEAPOKECENTER1F_NURSE
|
||||
const AZALEAPOKECENTER1F_GENTLEMAN
|
||||
const AZALEAPOKECENTER1F_FISHING_GURU
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const AZALEATOWN_AZALEA_ROCKET1
|
||||
const AZALEATOWN_GRAMPS
|
||||
const AZALEATOWN_TEACHER
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BATTLETOWER1F_RECEPTIONIST
|
||||
const BATTLETOWER1F_YOUNGSTER
|
||||
const BATTLETOWER1F_COOLTRAINER_F
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BATTLETOWERBATTLEROOM_YOUNGSTER
|
||||
const BATTLETOWERBATTLEROOM_RECEPTIONIST
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BATTLETOWERELEVATOR_RECEPTIONIST
|
||||
|
||||
BattleTowerElevator_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BATTLETOWERHALLWAY_RECEPTIONIST
|
||||
|
||||
BattleTowerHallway_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BATTLETOWEROUTSIDE_STANDING_YOUNGSTER
|
||||
const BATTLETOWEROUTSIDE_BUENA
|
||||
const BATTLETOWEROUTSIDE_SAILOR
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BILLSBROTHERSHOUSE_POKEFAN_F
|
||||
const BILLSBROTHERSHOUSE_YOUNGSTER
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BILLSFAMILYSHOUSE_BILL
|
||||
const BILLSFAMILYSHOUSE_POKEFAN_F
|
||||
const BILLSFAMILYSHOUSE_TWIN
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BILLSHOUSE_GRAMPS
|
||||
|
||||
BillsHouse_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BLACKTHORNCITY_SUPER_NERD1
|
||||
const BLACKTHORNCITY_SUPER_NERD2
|
||||
const BLACKTHORNCITY_GRAMPS1
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BLACKTHORNDRAGONSPEECHHOUSE_GRANNY
|
||||
const BLACKTHORNDRAGONSPEECHHOUSE_EKANS
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BLACKTHORNEMYSHOUSE_EMY
|
||||
|
||||
BlackthornEmysHouse_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BLACKTHORNGYM1F_CLAIR
|
||||
const BLACKTHORNGYM1F_COOLTRAINER_M1
|
||||
const BLACKTHORNGYM1F_COOLTRAINER_M2
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BLACKTHORNGYM2F_COOLTRAINER_M
|
||||
const BLACKTHORNGYM2F_COOLTRAINER_F
|
||||
const BLACKTHORNGYM2F_BOULDER1
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BLACKTHORNMART_CLERK
|
||||
const BLACKTHORNMART_COOLTRAINER_M
|
||||
const BLACKTHORNMART_BLACK_BELT
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BLACKTHORNPOKECENTER1F_NURSE
|
||||
const BLACKTHORNPOKECENTER1F_GENTLEMAN
|
||||
const BLACKTHORNPOKECENTER1F_TWIN
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BLUESHOUSE_DAISY
|
||||
|
||||
BluesHouse_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BRUNOSROOM_BRUNO
|
||||
|
||||
BrunosRoom_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BURNEDTOWER1F_ROCK
|
||||
const BURNEDTOWER1F_EUSINE
|
||||
const BURNEDTOWER1F_SILVER
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const BURNEDTOWERB1F_BOULDER
|
||||
const BURNEDTOWERB1F_RAIKOU1
|
||||
const BURNEDTOWERB1F_ENTEI1
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONCAFE_SUPER_NERD
|
||||
const CELADONCAFE_FISHER1
|
||||
const CELADONCAFE_FISHER2
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONCITY_FISHER
|
||||
const CELADONCITY_POLIWAG
|
||||
const CELADONCITY_TEACHER1
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONDEPTSTORE1F_RECEPTIONIST
|
||||
const CELADONDEPTSTORE1F_GENTLEMAN
|
||||
const CELADONDEPTSTORE1F_TEACHER
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONDEPTSTORE2F_CLERK1
|
||||
const CELADONDEPTSTORE2F_CLERK2
|
||||
const CELADONDEPTSTORE2F_POKEFAN_M
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONDEPTSTORE3F_CLERK
|
||||
const CELADONDEPTSTORE3F_YOUNGSTER
|
||||
const CELADONDEPTSTORE3F_GAMEBOY_KID1
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONDEPTSTORE4F_CLERK
|
||||
const CELADONDEPTSTORE4F_SUPER_NERD
|
||||
const CELADONDEPTSTORE4F_YOUNGSTER
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONDEPTSTORE5F_CLERK1
|
||||
const CELADONDEPTSTORE5F_CLERK2
|
||||
const CELADONDEPTSTORE5F_GENTLEMAN
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONDEPTSTORE6F_SUPER_NERD
|
||||
const CELADONDEPTSTORE6F_YOUNGSTER
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONGAMECORNER_CLERK
|
||||
const CELADONGAMECORNER_RECEPTIONIST
|
||||
const CELADONGAMECORNER_POKEFAN_M
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONGAMECORNERPRIZEROOM_GENTLEMAN
|
||||
const CELADONGAMECORNERPRIZEROOM_PHARMACIST
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONGYM_ERIKA
|
||||
const CELADONGYM_LASS1
|
||||
const CELADONGYM_LASS2
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONMANSION1F_GRANNY
|
||||
const CELADONMANSION1F_GROWLITHE1
|
||||
const CELADONMANSION1F_CLEFAIRY
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONMANSION3F_COOLTRAINER_M
|
||||
const CELADONMANSION3F_GYM_GUY
|
||||
const CELADONMANSION3F_SUPER_NERD
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONMANSIONROOF_FISHER
|
||||
|
||||
CeladonMansionRoof_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONMANSIONROOFHOUSE_PHARMACIST
|
||||
|
||||
CeladonMansionRoofHouse_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CELADONPOKECENTER1F_NURSE
|
||||
const CELADONPOKECENTER1F_GENTLEMAN
|
||||
const CELADONPOKECENTER1F_PHARMACIST
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CERULEANCITY_COOLTRAINER_M
|
||||
const CERULEANCITY_SUPER_NERD
|
||||
const CERULEANCITY_SLOWPOKE
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CERULEANGYM_ROCKET
|
||||
const CERULEANGYM_MISTY
|
||||
const CERULEANGYM_SWIMMER_GIRL1
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CERULEANGYMBADGESPEECHHOUSE_POKEFAN_M
|
||||
|
||||
CeruleanGymBadgeSpeechHouse_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CERULEANMART_CLERK
|
||||
const CERULEANMART_COOLTRAINER_M
|
||||
const CERULEANMART_COOLTRAINER_F
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CERULEANPOKECENTER1F_NURSE
|
||||
const CERULEANPOKECENTER1F_SUPER_NERD
|
||||
const CERULEANPOKECENTER1F_GYM_GUY
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CERULEANPOLICESTATION_FISHING_GURU
|
||||
const CERULEANPOLICESTATION_POKEFAN_F
|
||||
const CERULEANPOLICESTATION_DIGLETT
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CERULEANTRADESPEECHHOUSE_GRANNY
|
||||
const CERULEANTRADESPEECHHOUSE_GRAMPS
|
||||
const CERULEANTRADESPEECHHOUSE_RHYDON
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CHARCOALKILN_BLACK_BELT
|
||||
const CHARCOALKILN_YOUNGSTER
|
||||
const CHARCOALKILN_MOLTRES
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CHERRYGROVECITY_GRAMPS
|
||||
const CHERRYGROVECITY_SILVER
|
||||
const CHERRYGROVECITY_TEACHER
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CHERRYGROVEEVOLUTIONSPEECHHOUSE_LASS
|
||||
const CHERRYGROVEEVOLUTIONSPEECHHOUSE_YOUNGSTER
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CHERRYGROVEGYMSPEECHHOUSE_POKEFAN_M
|
||||
const CHERRYGROVEGYMSPEECHHOUSE_BUG_CATCHER
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CHERRYGROVEMART_CLERK
|
||||
const CHERRYGROVEMART_COOLTRAINER_M
|
||||
const CHERRYGROVEMART_YOUNGSTER
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CHERRYGROVEPOKECENTER1F_NURSE
|
||||
const CHERRYGROVEPOKECENTER1F_FISHER
|
||||
const CHERRYGROVEPOKECENTER1F_GENTLEMAN
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CIANWOODCITY_STANDING_YOUNGSTER
|
||||
const CIANWOODCITY_POKEFAN_M
|
||||
const CIANWOODCITY_LASS
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CIANWOODGYM_CHUCK
|
||||
const CIANWOODGYM_BLACK_BELT1
|
||||
const CIANWOODGYM_BLACK_BELT2
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CIANWOODLUGIASPEECHHOUSE_TEACHER
|
||||
const CIANWOODLUGIASPEECHHOUSE_LASS
|
||||
const CIANWOODLUGIASPEECHHOUSE_TWIN
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CIANWOODPHARMACY_PHARMACIST
|
||||
|
||||
CianwoodPharmacy_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CIANWOODPHOTOSTUDIO_FISHING_GURU
|
||||
|
||||
CianwoodPhotoStudio_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CIANWOODPOKECENTER1F_NURSE
|
||||
const CIANWOODPOKECENTER1F_LASS
|
||||
const CIANWOODPOKECENTER1F_GYM_GUY
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CINNABARISLAND_BLUE
|
||||
|
||||
CinnabarIsland_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const CINNABARPOKECENTER1F_NURSE
|
||||
const CINNABARPOKECENTER1F_COOLTRAINER_F
|
||||
const CINNABARPOKECENTER1F_FISHER
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const COLOSSEUM_CHRIS1
|
||||
const COLOSSEUM_CHRIS2
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const COPYCATSHOUSE1F_POKEFAN_M
|
||||
const COPYCATSHOUSE1F_POKEFAN_F
|
||||
const COPYCATSHOUSE1F_CLEFAIRY
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const COPYCATSHOUSE2F_COPYCAT1 ; if player is male
|
||||
const COPYCATSHOUSE2F_DODRIO
|
||||
const COPYCATSHOUSE2F_FAIRYDOLL ; lost item
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const DANCETHEATRE_KIMONO_GIRL1
|
||||
const DANCETHEATRE_KIMONO_GIRL2
|
||||
const DANCETHEATRE_KIMONO_GIRL3
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const DARKCAVEBLACKTHORNENTRANCE_PHARMACIST
|
||||
const DARKCAVEBLACKTHORNENTRANCE_POKE_BALL1
|
||||
const DARKCAVEBLACKTHORNENTRANCE_POKE_BALL2
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const DARKCAVEVIOLETENTRANCE_POKE_BALL1
|
||||
const DARKCAVEVIOLETENTRANCE_ROCK1
|
||||
const DARKCAVEVIOLETENTRANCE_ROCK2
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const DAYCARE_GRAMPS
|
||||
const DAYCARE_GRANNY
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const DAYOFWEEKSIBLINGSHOUSE_POKEDEX
|
||||
|
||||
DayOfWeekSiblingsHouse_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const DIGLETTSCAVE_POKEFAN_M
|
||||
|
||||
DiglettsCave_MapScripts:
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const DRAGONSHRINE_ELDER1
|
||||
const DRAGONSHRINE_ELDER2
|
||||
const DRAGONSHRINE_ELDER3
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const DRAGONSDENB1F_POKE_BALL1
|
||||
const DRAGONSDENB1F_CLAIR
|
||||
const DRAGONSDENB1F_SILVER
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const EARLSPOKEMONACADEMY_EARL
|
||||
const EARLSPOKEMONACADEMY_YOUNGSTER1
|
||||
const EARLSPOKEMONACADEMY_GAMEBOY_KID1
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const ECRUTEAKCITY_GRAMPS1
|
||||
const ECRUTEAKCITY_GRAMPS2
|
||||
const ECRUTEAKCITY_LASS1
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const ECRUTEAKGYM_MORTY
|
||||
const ECRUTEAKGYM_SAGE1
|
||||
const ECRUTEAKGYM_SAGE2
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const ECRUTEAKITEMFINDERHOUSE_COOLTRAINER_M
|
||||
const ECRUTEAKITEMFINDERHOUSE_POKEDEX
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const ECRUTEAKLUGIASPEECHHOUSE_GRAMPS
|
||||
const ECRUTEAKLUGIASPEECHHOUSE_YOUNGSTER
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const ECRUTEAKMART_CLERK
|
||||
const ECRUTEAKMART_SUPER_NERD
|
||||
const ECRUTEAKMART_GRANNY
|
||||
|
@ -1,4 +1,4 @@
|
||||
const_value set 2 ; object constants
|
||||
const_def 2 ; object constants
|
||||
const ECRUTEAKPOKECENTER1F_NURSE
|
||||
const ECRUTEAKPOKECENTER1F_POKEFAN_M
|
||||
const ECRUTEAKPOKECENTER1F_COOLTRAINER_F
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user