mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 11:44:17 +01:00
Merge branch 'RHH/upcoming' into RHH/pr/feature/formBattleChange
# Conflicts: # include/constants/pokemon.h # src/battle_script_commands.c
This commit is contained in:
commit
1580f892a5
20
.github/calcrom/calcrom.pl
vendored
20
.github/calcrom/calcrom.pl
vendored
@ -1,5 +1,11 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# Usage:
|
||||
# calcrom.pl <mapfile> [--data]
|
||||
#
|
||||
# mapfile: path to .map file output by LD
|
||||
# data: set to output % breakdown of data
|
||||
|
||||
use IPC::Cmd qw[ run ];
|
||||
use Getopt::Long;
|
||||
|
||||
@ -65,12 +71,13 @@ my $base_cmd = "nm $elffname | awk '{print \$3}' | grep '^[^_].\\{4\\}' | uniq";
|
||||
|
||||
# This looks for Unknown_, Unknown_, or sub_, followed by an address. Note that
|
||||
# it matches even if stuff precedes the unknown, like sUnknown/gUnknown.
|
||||
my $undoc_cmd = "grep '[Uu]nknown_[0-9a-fA-F]\\{5,7\\}\\|sub_[0-9a-fA-F]\\{5,7\\}'";
|
||||
my $undoc_regex = "'[Uu]nknown_[0-9a-fA-F]\\{5,7\\}\\|sub_[0-9a-fA-F]\\{5,7\\}'";
|
||||
|
||||
# This looks for every symbol with an address at the end of it. Some things are
|
||||
# given a name based on their type / location, but still have an unknown purpose.
|
||||
# For example, FooMap_EventScript_FFFFFFF.
|
||||
my $partial_doc_cmd = "grep '_[0-28][0-9a-fA-F]\\{5,7\\}'";
|
||||
# The above may be double counted here, and will need to be filtered out.
|
||||
my $partial_doc_regex = "'_[0-28][0-9a-fA-F]\\{5,7\\}'";
|
||||
|
||||
my $count_cmd = "wc -l";
|
||||
|
||||
@ -87,7 +94,7 @@ my $total_syms_as_string;
|
||||
|
||||
my $undocumented_as_string;
|
||||
(run (
|
||||
command => "$base_cmd | $undoc_cmd | $count_cmd",
|
||||
command => "$base_cmd | grep $undoc_regex | $count_cmd",
|
||||
buffer => \$undocumented_as_string,
|
||||
timeout => 60
|
||||
))
|
||||
@ -95,7 +102,7 @@ my $undocumented_as_string;
|
||||
|
||||
my $partial_documented_as_string;
|
||||
(run (
|
||||
command => "$base_cmd | $partial_doc_cmd | $count_cmd",
|
||||
command => "$base_cmd | grep $partial_doc_regex | grep -v $undoc_regex | $count_cmd",
|
||||
buffer => \$partial_documented_as_string,
|
||||
timeout => 60
|
||||
))
|
||||
@ -112,7 +119,7 @@ my $undocumented = $undocumented_as_string + 0;
|
||||
$partial_documented_as_string =~ s/^\s+|\s+$//g;
|
||||
my $partial_documented = $partial_documented_as_string + 0;
|
||||
(($partial_documented != 0) or (($partial_documented == 0) and ($partial_documented_as_string eq "0")))
|
||||
or die "ERROR: Cannot convert string to num: '$partial_documented_as_string'";
|
||||
or die "ERROR: Cannot convert string to num: '$partial_documented_as_string'";
|
||||
|
||||
$total_syms_as_string =~ s/^\s+|\s+$//g;
|
||||
my $total_syms = $total_syms_as_string + 0;
|
||||
@ -126,9 +133,6 @@ my $total = $src + $asm;
|
||||
my $srcPct = sprintf("%.4f", 100 * $src / $total);
|
||||
my $asmPct = sprintf("%.4f", 100 * $asm / $total);
|
||||
|
||||
# partial_documented is double-counting the unknown_* and sub_* symbols.
|
||||
$partial_documented = $partial_documented - $undocumented;
|
||||
|
||||
my $documented = $total_syms - ($undocumented + $partial_documented);
|
||||
my $docPct = sprintf("%.4f", 100 * $documented / $total_syms);
|
||||
my $partialPct = sprintf("%.4f", 100 * $partial_documented / $total_syms);
|
||||
|
@ -358,7 +358,7 @@ If this works, then proceed to [Installation](#installation). Otherwise, ask for
|
||||
1. If pokeemerald is not already downloaded (some users may prefer to download pokeemerald via a git client like GitHub Desktop), run:
|
||||
|
||||
```bash
|
||||
git clone https://github.com/pret/pokeemerald
|
||||
git clone https://github.com/rh-hideout/pokeemerald-expansion
|
||||
```
|
||||
|
||||
<details>
|
||||
|
@ -1162,7 +1162,7 @@
|
||||
.4byte \ptr
|
||||
.endm
|
||||
|
||||
.macro trygetintimidatetarget ptr:req
|
||||
.macro unused2 ptr:req
|
||||
.byte 0xe1
|
||||
.4byte \ptr
|
||||
.endm
|
||||
@ -1290,7 +1290,7 @@
|
||||
.4byte \ptr
|
||||
.endm
|
||||
|
||||
.macro trygetbaddreamstarget ptr:req
|
||||
.macro unused ptr:req
|
||||
.byte 0xfd
|
||||
.4byte \ptr
|
||||
.endm
|
||||
@ -1300,8 +1300,14 @@
|
||||
.4byte \ptr
|
||||
.endm
|
||||
|
||||
.macro metalburstdamagecalculator ptr:req
|
||||
.macro callnative func:req
|
||||
.byte 0xff
|
||||
.4byte \func
|
||||
.endm
|
||||
|
||||
@ callnative macros
|
||||
.macro metalburstdamagecalculator ptr:req
|
||||
callnative BS_CalcMetalBurstDmg
|
||||
.4byte \ptr
|
||||
.endm
|
||||
|
||||
@ -1326,8 +1332,8 @@
|
||||
various \battler, VARIOUS_GET_BATTLER_FAINTED
|
||||
.endm
|
||||
|
||||
.macro resetintimidatetracebits battler:req
|
||||
various \battler, VARIOUS_RESET_INTIMIDATE_TRACE_BITS
|
||||
.macro resetswitchinabilitybits battler:req
|
||||
various \battler, VARIOUS_RESET_SWITCH_IN_ABILITY_BITS
|
||||
.endm
|
||||
|
||||
.macro updatechoicemoveonlvlup battler:req
|
||||
@ -1994,6 +2000,11 @@
|
||||
.4byte \ptr
|
||||
.endm
|
||||
|
||||
.macro swapstats stat:req
|
||||
various BS_ATTACKER, VARIOUS_SWAP_STATS
|
||||
.byte \stat
|
||||
.endm
|
||||
|
||||
@ helpful macros
|
||||
.macro setstatchanger stat:req, stages:req, down:req
|
||||
setbyte sSTATCHANGER, \stat | \stages << 3 | \down << 7
|
||||
|
@ -469,7 +469,7 @@
|
||||
formatwarp \map, \a, \b, \c
|
||||
.endm
|
||||
|
||||
@ Sets the dynamic warp destination. Warps with a destination map of MAP_NONE will target this destination.
|
||||
@ Sets the dynamic warp destination. Warps with a destination map of MAP_DYNAMIC will target this destination.
|
||||
@ Warp commands can be given either the id of which warp location to go to on the destination map
|
||||
@ or a pair of x/y coordinates to go to directly on the destination map.
|
||||
.macro setdynamicwarp map:req, a, b, c
|
||||
|
@ -426,13 +426,13 @@ SHADOW = FC 03 @ same as fc 01
|
||||
COLOR_HIGHLIGHT_SHADOW = FC 04 @ takes 3 bytes
|
||||
PALETTE = FC 05 @ used in credits
|
||||
FONT = FC 06 @ Given a font id, or use font constants below instead
|
||||
RESET_SIZE = FC 07
|
||||
RESET_FONT = FC 07
|
||||
PAUSE = FC 08 @ manually print the wait byte after this, havent mapped them
|
||||
PAUSE_UNTIL_PRESS = FC 09
|
||||
WAIT_SE = FC 0A
|
||||
PLAY_BGM = FC 0B
|
||||
ESCAPE = FC 0C
|
||||
SHIFT_TEXT = FC 0D
|
||||
SHIFT_RIGHT = FC 0D
|
||||
SHIFT_DOWN = FC 0E
|
||||
FILL_WINDOW = FC 0F
|
||||
PLAY_SE = FC 10
|
||||
|
@ -1,4 +1,5 @@
|
||||
#include "config.h"
|
||||
#include "config/battle.h"
|
||||
#include "constants/battle.h"
|
||||
#include "constants/battle_anim.h"
|
||||
#include "constants/rgb.h"
|
||||
@ -7,7 +8,6 @@
|
||||
#include "constants/moves.h"
|
||||
#include "constants/pokemon.h"
|
||||
#include "constants/items.h"
|
||||
#include "constants/battle_config.h"
|
||||
.include "asm/macros.inc"
|
||||
.include "asm/macros/battle_anim_script.inc"
|
||||
.include "constants/constants.inc"
|
||||
@ -805,6 +805,55 @@ gBattleAnims_Moves::
|
||||
.4byte Move_SANDSEAR_STORM
|
||||
.4byte Move_LUNAR_BLESSING
|
||||
.4byte Move_TAKE_HEART
|
||||
@@@@@@@@@@@@ GEN 9 @@@@@@@@@@@@
|
||||
.4byte Move_TERA_BLAST
|
||||
.4byte Move_SILK_TRAP
|
||||
.4byte Move_AXE_KICK
|
||||
.4byte Move_LAST_RESPECTS
|
||||
.4byte Move_LUMINA_CRASH
|
||||
.4byte Move_ORDER_UP
|
||||
.4byte Move_JET_PUNCH
|
||||
.4byte Move_SPICY_EXTRACT
|
||||
.4byte Move_SPIN_OUT
|
||||
.4byte Move_POPULATION_BOMB
|
||||
.4byte Move_ICE_SPINNER
|
||||
.4byte Move_GLAIVE_RUSH
|
||||
.4byte Move_REVIVAL_BLESSING
|
||||
.4byte Move_SALT_CURE
|
||||
.4byte Move_TRIPLE_DIVE
|
||||
.4byte Move_MORTAL_SPIN
|
||||
.4byte Move_DOODLE
|
||||
.4byte Move_FILLET_AWAY
|
||||
.4byte Move_KOWTOW_CLEAVE
|
||||
.4byte Move_FLOWER_TRICK
|
||||
.4byte Move_TORCH_SONG
|
||||
.4byte Move_AQUA_STEP
|
||||
.4byte Move_RAGING_BULL
|
||||
.4byte Move_MAKE_IT_RAIN
|
||||
.4byte Move_RUINATION
|
||||
.4byte Move_COLLISION_COURSE
|
||||
.4byte Move_ELECTRO_DRIFT
|
||||
.4byte Move_SHED_TAIL
|
||||
.4byte Move_CHILLY_RECEPTION
|
||||
.4byte Move_TIDY_UP
|
||||
.4byte Move_SNOWSCAPE
|
||||
.4byte Move_POUNCE
|
||||
.4byte Move_TRAILBLAZE
|
||||
.4byte Move_CHILLING_WATER
|
||||
.4byte Move_HYPER_DRILL
|
||||
.4byte Move_TWIN_BEAM
|
||||
.4byte Move_RAGE_FIST
|
||||
.4byte Move_ARMOR_CANNON
|
||||
.4byte Move_BITTER_BLADE
|
||||
.4byte Move_DOUBLE_SHOCK
|
||||
.4byte Move_GIGATON_HAMMER
|
||||
.4byte Move_COMEUPPANCE
|
||||
.4byte Move_AQUA_CUTTER
|
||||
.4byte Move_BLAZING_TORQUE
|
||||
.4byte Move_WICKED_TORQUE
|
||||
.4byte Move_NOXIOUS_TORQUE
|
||||
.4byte Move_COMBAT_TORQUE
|
||||
.4byte Move_MAGICAL_TORQUE
|
||||
@@@@ Z MOVES
|
||||
.4byte Move_BREAKNECK_BLITZ
|
||||
.4byte Move_ALL_OUT_PUMMELING
|
||||
@ -14345,6 +14394,54 @@ Move_WILDBOLT_STORM::
|
||||
Move_SANDSEAR_STORM::
|
||||
Move_LUNAR_BLESSING::
|
||||
Move_TAKE_HEART::
|
||||
Move_TERA_BLAST::
|
||||
Move_SILK_TRAP::
|
||||
Move_AXE_KICK::
|
||||
Move_LAST_RESPECTS::
|
||||
Move_LUMINA_CRASH::
|
||||
Move_ORDER_UP::
|
||||
Move_JET_PUNCH::
|
||||
Move_SPICY_EXTRACT::
|
||||
Move_SPIN_OUT::
|
||||
Move_POPULATION_BOMB::
|
||||
Move_ICE_SPINNER::
|
||||
Move_GLAIVE_RUSH::
|
||||
Move_REVIVAL_BLESSING::
|
||||
Move_SALT_CURE::
|
||||
Move_TRIPLE_DIVE::
|
||||
Move_MORTAL_SPIN::
|
||||
Move_DOODLE::
|
||||
Move_FILLET_AWAY::
|
||||
Move_KOWTOW_CLEAVE::
|
||||
Move_FLOWER_TRICK::
|
||||
Move_TORCH_SONG::
|
||||
Move_AQUA_STEP::
|
||||
Move_RAGING_BULL::
|
||||
Move_MAKE_IT_RAIN::
|
||||
Move_RUINATION::
|
||||
Move_COLLISION_COURSE::
|
||||
Move_ELECTRO_DRIFT::
|
||||
Move_SHED_TAIL::
|
||||
Move_CHILLY_RECEPTION::
|
||||
Move_TIDY_UP::
|
||||
Move_SNOWSCAPE::
|
||||
Move_POUNCE::
|
||||
Move_TRAILBLAZE::
|
||||
Move_CHILLING_WATER::
|
||||
Move_HYPER_DRILL::
|
||||
Move_TWIN_BEAM::
|
||||
Move_RAGE_FIST::
|
||||
Move_ARMOR_CANNON::
|
||||
Move_BITTER_BLADE::
|
||||
Move_DOUBLE_SHOCK::
|
||||
Move_GIGATON_HAMMER::
|
||||
Move_COMEUPPANCE::
|
||||
Move_AQUA_CUTTER::
|
||||
Move_BLAZING_TORQUE::
|
||||
Move_WICKED_TORQUE::
|
||||
Move_NOXIOUS_TORQUE::
|
||||
Move_COMBAT_TORQUE::
|
||||
Move_MAGICAL_TORQUE::
|
||||
end @to do
|
||||
|
||||
@@@@@@@@@@@@@@@@@@@@@@@ GEN 1-3 @@@@@@@@@@@@@@@@@@@@@@@
|
||||
|
@ -1,4 +1,5 @@
|
||||
#include "config.h"
|
||||
#include "config/battle.h"
|
||||
#include "constants/global.h"
|
||||
#include "constants/battle.h"
|
||||
#include "constants/pokemon.h"
|
||||
@ -12,7 +13,6 @@
|
||||
#include "constants/songs.h"
|
||||
#include "constants/game_stat.h"
|
||||
#include "constants/trainers.h"
|
||||
#include "constants/battle_config.h"
|
||||
#include "constants/species.h"
|
||||
.include "asm/macros.inc"
|
||||
.include "asm/macros/battle_script.inc"
|
||||
@ -412,6 +412,10 @@ gBattleScriptsForMoveEffects::
|
||||
.4byte BattleScript_EffectExtremeEvoboost @ EFFECT_EXTREME_EVOBOOST
|
||||
.4byte BattleScript_EffectTerrainHit @ EFFECT_DAMAGE_SET_TERRAIN
|
||||
.4byte BattleScript_EffectDarkVoid @ EFFECT_DARK_VOID
|
||||
.4byte BattleScript_EffectSleepHit @ EFFECT_SLEEP_HIT
|
||||
.4byte BattleScript_EffectDoubleShock @ EFFECT_DOUBLE_SHOCK
|
||||
.4byte BattleScript_EffectSpecialAttackUpHit @ EFFECT_SPECIAL_ATTACK_UP_HIT
|
||||
.4byte BattleScript_EffectVictoryDance @ EFFECT_VICTORY_DANCE
|
||||
|
||||
BattleScript_AffectionBasedEndurance::
|
||||
playanimation BS_TARGET, B_ANIM_AFFECTION_HANGED_ON
|
||||
@ -1281,6 +1285,23 @@ BattleScript_BurnUpRemoveType::
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
return
|
||||
|
||||
BattleScript_EffectDoubleShock:
|
||||
attackcanceler
|
||||
attackstring
|
||||
ppreduce
|
||||
jumpiftype BS_ATTACKER, TYPE_ELECTRIC, BattleScript_DoubleShockWorks
|
||||
goto BattleScript_ButItFailed
|
||||
|
||||
BattleScript_DoubleShockWorks:
|
||||
setmoveeffect MOVE_EFFECT_DOUBLE_SHOCK | MOVE_EFFECT_CERTAIN
|
||||
goto BattleScript_EffectHit
|
||||
|
||||
BattleScript_DoubleShockRemoveType::
|
||||
losetype BS_ATTACKER, TYPE_ELECTRIC
|
||||
printstring STRINGID_ATTACKERLOSTELECTRICTYPE
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
return
|
||||
|
||||
BattleScript_EffectPurify:
|
||||
attackcanceler
|
||||
attackstring
|
||||
@ -2326,6 +2347,38 @@ BattleScript_QuiverDanceTrySpeed::
|
||||
BattleScript_QuiverDanceEnd::
|
||||
goto BattleScript_MoveEnd
|
||||
|
||||
BattleScript_EffectVictoryDance:
|
||||
attackcanceler
|
||||
attackstring
|
||||
ppreduce
|
||||
jumpifstat BS_ATTACKER, CMP_LESS_THAN, STAT_ATK, MAX_STAT_STAGE, BattleScript_VictoryDanceDoMoveAnim
|
||||
jumpifstat BS_ATTACKER, CMP_LESS_THAN, STAT_DEF, MAX_STAT_STAGE, BattleScript_VictoryDanceDoMoveAnim
|
||||
jumpifstat BS_ATTACKER, CMP_EQUAL, STAT_SPEED, MAX_STAT_STAGE, BattleScript_CantRaiseMultipleStats
|
||||
BattleScript_VictoryDanceDoMoveAnim::
|
||||
attackanimation
|
||||
waitanimation
|
||||
setbyte sSTAT_ANIM_PLAYED, FALSE
|
||||
playstatchangeanimation BS_ATTACKER, BIT_ATK | BIT_DEF | BIT_SPEED, 0
|
||||
setstatchanger STAT_ATK, 1, FALSE
|
||||
statbuffchange MOVE_EFFECT_AFFECTS_USER | STAT_CHANGE_ALLOW_PTR, BattleScript_VictoryDanceTryDef
|
||||
jumpifbyte CMP_EQUAL, cMULTISTRING_CHOOSER, B_MSG_STAT_WONT_INCREASE, BattleScript_VictoryDanceTryDef
|
||||
printfromtable gStatUpStringIds
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
BattleScript_VictoryDanceTryDef::
|
||||
setstatchanger STAT_DEF, 1, FALSE
|
||||
statbuffchange MOVE_EFFECT_AFFECTS_USER | STAT_CHANGE_ALLOW_PTR, BattleScript_VictoryDanceTrySpeed
|
||||
jumpifbyte CMP_EQUAL, cMULTISTRING_CHOOSER, B_MSG_STAT_WONT_INCREASE, BattleScript_VictoryDanceTrySpeed
|
||||
printfromtable gStatUpStringIds
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
BattleScript_VictoryDanceTrySpeed::
|
||||
setstatchanger STAT_SPEED, 1, FALSE
|
||||
statbuffchange MOVE_EFFECT_AFFECTS_USER | STAT_CHANGE_ALLOW_PTR, BattleScript_VictoryDanceEnd
|
||||
jumpifbyte CMP_EQUAL, cMULTISTRING_CHOOSER, B_MSG_STAT_WONT_INCREASE, BattleScript_VictoryDanceEnd
|
||||
printfromtable gStatUpStringIds
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
BattleScript_VictoryDanceEnd::
|
||||
goto BattleScript_MoveEnd
|
||||
|
||||
BattleScript_EffectSpeedUpHit:
|
||||
setmoveeffect MOVE_EFFECT_SPD_PLUS_1 | MOVE_EFFECT_AFFECTS_USER
|
||||
goto BattleScript_EffectHit
|
||||
@ -2679,10 +2732,10 @@ BattleScript_EffectSpeedSwap:
|
||||
attackstring
|
||||
ppreduce
|
||||
accuracycheck BattleScript_ButItFailed, NO_ACC_CALC_CHECK_LOCK_ON
|
||||
swapstatstages STAT_SPEED
|
||||
swapstats STAT_SPEED
|
||||
attackanimation
|
||||
waitanimation
|
||||
printstring STRINGID_PKMNSWITCHEDSTATCHANGES
|
||||
printstring STRINGID_ATTACKERSWITCHEDSTATWITHTARGET
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
goto BattleScript_MoveEnd
|
||||
|
||||
@ -3201,6 +3254,10 @@ BattleScript_EffectBurnHit::
|
||||
setmoveeffect MOVE_EFFECT_BURN
|
||||
goto BattleScript_EffectHit
|
||||
|
||||
BattleScript_EffectSleepHit::
|
||||
setmoveeffect MOVE_EFFECT_SLEEP
|
||||
goto BattleScript_EffectHit
|
||||
|
||||
BattleScript_EffectFreezeHit::
|
||||
setmoveeffect MOVE_EFFECT_FREEZE
|
||||
goto BattleScript_EffectHit
|
||||
@ -4970,6 +5027,10 @@ BattleScript_EffectAttackUpHit::
|
||||
setmoveeffect MOVE_EFFECT_ATK_PLUS_1 | MOVE_EFFECT_AFFECTS_USER
|
||||
goto BattleScript_EffectHit
|
||||
|
||||
BattleScript_EffectSpecialAttackUpHit::
|
||||
setmoveeffect MOVE_EFFECT_SP_ATK_PLUS_1 | MOVE_EFFECT_AFFECTS_USER
|
||||
goto BattleScript_EffectHit
|
||||
|
||||
BattleScript_EffectAllStatsUpHit::
|
||||
setmoveeffect MOVE_EFFECT_ALL_STATS_UP | MOVE_EFFECT_AFFECTS_USER
|
||||
goto BattleScript_EffectHit
|
||||
@ -6128,7 +6189,7 @@ BattleScript_FaintedMonTryChoose:
|
||||
jumpifbyte CMP_EQUAL, gBattleCommunication, PARTY_SIZE, BattleScript_FaintedMonSendOutNew
|
||||
@ Switch Pokémon before opponent
|
||||
atknameinbuff1
|
||||
resetintimidatetracebits BS_ATTACKER
|
||||
resetswitchinabilitybits BS_ATTACKER
|
||||
hpthresholds2 BS_ATTACKER
|
||||
printstring STRINGID_RETURNMON
|
||||
switchoutabilities BS_ATTACKER
|
||||
@ -8199,19 +8260,15 @@ BattleScript_TryAdrenalineOrb:
|
||||
BattleScript_TryAdrenalineOrbRet:
|
||||
return
|
||||
|
||||
BattleScript_IntimidateActivatesEnd3::
|
||||
call BattleScript_PauseIntimidateActivates
|
||||
end3
|
||||
|
||||
BattleScript_PauseIntimidateActivates:
|
||||
pause B_WAIT_TIME_SHORT
|
||||
BattleScript_IntimidateActivates::
|
||||
showabilitypopup BS_ATTACKER
|
||||
pause B_WAIT_TIME_LONG
|
||||
destroyabilitypopup
|
||||
setbyte gBattlerTarget, 0
|
||||
call BattleScript_AbilityPopUp
|
||||
BattleScript_IntimidateActivatesLoop:
|
||||
setstatchanger STAT_ATK, 1, TRUE
|
||||
trygetintimidatetarget BattleScript_IntimidateActivatesReturn
|
||||
jumpifstatus2 BS_TARGET, STATUS2_SUBSTITUTE, BattleScript_IntimidateActivatesLoopIncrement
|
||||
BattleScript_IntimidateLoop:
|
||||
jumpifbyteequal gBattlerTarget, gBattlerAttacker, BattleScript_IntimidateLoopIncrement
|
||||
jumpiftargetally BattleScript_IntimidateLoopIncrement
|
||||
jumpifstatus2 BS_TARGET, STATUS2_SUBSTITUTE, BattleScript_IntimidateLoopIncrement
|
||||
jumpifability BS_TARGET, ABILITY_CLEAR_BODY, BattleScript_IntimidatePrevented
|
||||
jumpifability BS_TARGET, ABILITY_HYPER_CUTTER, BattleScript_IntimidatePrevented
|
||||
jumpifability BS_TARGET, ABILITY_WHITE_SMOKE, BattleScript_IntimidatePrevented
|
||||
@ -8221,27 +8278,31 @@ BattleScript_IntimidateActivatesLoop:
|
||||
jumpifability BS_TARGET, ABILITY_OWN_TEMPO, BattleScript_IntimidatePrevented
|
||||
jumpifability BS_TARGET, ABILITY_OBLIVIOUS, BattleScript_IntimidatePrevented
|
||||
.endif
|
||||
statbuffchange STAT_CHANGE_NOT_PROTECT_AFFECTED | STAT_CHANGE_ALLOW_PTR, BattleScript_IntimidateActivatesLoopIncrement
|
||||
jumpifbyte CMP_GREATER_THAN, cMULTISTRING_CHOOSER, 1, BattleScript_IntimidateActivatesLoopIncrement
|
||||
BattleScript_IntimidateEffect:
|
||||
copybyte sBATTLER, gBattlerTarget
|
||||
statbuffchange STAT_CHANGE_NOT_PROTECT_AFFECTED | MOVE_EFFECT_CERTAIN, NULL
|
||||
setgraphicalstatchangevalues
|
||||
playanimation BS_TARGET, B_ANIM_STATS_CHANGE, sB_ANIM_ARG1
|
||||
printstring STRINGID_PKMNCUTSATTACKWITH
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
call BattleScript_TryAdrenalineOrb
|
||||
BattleScript_IntimidateActivatesLoopIncrement:
|
||||
BattleScript_IntimidateLoopIncrement:
|
||||
addbyte gBattlerTarget, 1
|
||||
goto BattleScript_IntimidateActivatesLoop
|
||||
BattleScript_IntimidateActivatesReturn:
|
||||
return
|
||||
jumpifbytenotequal gBattlerTarget, gBattlersCount, BattleScript_IntimidateLoop
|
||||
BattleScript_IntimidateEnd:
|
||||
destroyabilitypopup
|
||||
pause B_WAIT_TIME_MED
|
||||
end3
|
||||
|
||||
BattleScript_IntimidatePrevented:
|
||||
pause B_WAIT_TIME_SHORT
|
||||
call BattleScript_AbilityPopUp
|
||||
pause B_WAIT_TIME_LONG
|
||||
setbyte gBattleCommunication STAT_ATK
|
||||
stattextbuffer BS_ATTACKER
|
||||
stattextbuffer BS_TARGET
|
||||
printstring STRINGID_STATWASNOTLOWERED
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
call BattleScript_TryAdrenalineOrb
|
||||
goto BattleScript_IntimidateActivatesLoopIncrement
|
||||
goto BattleScript_IntimidateLoopIncrement
|
||||
|
||||
BattleScript_DroughtActivates::
|
||||
pause B_WAIT_TIME_SHORT
|
||||
@ -8364,24 +8425,33 @@ BattleScript_PsychicSurgeActivates::
|
||||
call BattleScript_TerrainSeedLoop
|
||||
end3
|
||||
|
||||
BattleScript_BadDreamsActivates::
|
||||
setbyte gBattlerTarget, 0
|
||||
call BattleScript_AbilityPopUp
|
||||
BattleScript_BadDreamsLoop:
|
||||
trygetbaddreamstarget BattleScript_BadDreamsEnd
|
||||
dmg_1_8_targethp
|
||||
BattleScript_HurtTarget_NoString:
|
||||
orword gHitMarker, HITMARKER_IGNORE_SUBSTITUTE | HITMARKER_PASSIVE_DAMAGE
|
||||
printstring STRINGID_BADDREAMSDMG
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
jumpifability BS_TARGET, ABILITY_MAGIC_GUARD, BattleScript_BadDreamsIncrement
|
||||
healthbarupdate BS_TARGET
|
||||
datahpupdate BS_TARGET
|
||||
tryfaintmon BS_TARGET
|
||||
checkteamslost BattleScript_BadDreamsIncrement
|
||||
return
|
||||
|
||||
BattleScript_BadDreamsActivates::
|
||||
call BattleScript_AbilityPopUp
|
||||
setbyte sFIXED_ABILITY_POPUP, TRUE
|
||||
setbyte gBattlerTarget, 0
|
||||
BattleScript_BadDreamsLoop:
|
||||
jumpiftargetally BattleScript_BadDreamsIncrement
|
||||
jumpifability BS_TARGET, ABILITY_MAGIC_GUARD, BattleScript_BadDreamsIncrement
|
||||
jumpifability BS_TARGET, ABILITY_COMATOSE, BattleScript_BadDreams_Dmg
|
||||
jumpifstatus BS_TARGET, STATUS1_SLEEP, BattleScript_BadDreams_Dmg
|
||||
goto BattleScript_BadDreamsIncrement
|
||||
BattleScript_BadDreams_Dmg:
|
||||
printstring STRINGID_BADDREAMSDMG
|
||||
waitmessage B_WAIT_TIME_LONG
|
||||
dmg_1_8_targethp
|
||||
call BattleScript_HurtTarget_NoString
|
||||
BattleScript_BadDreamsIncrement:
|
||||
addbyte gBattlerTarget, 1
|
||||
goto BattleScript_BadDreamsLoop
|
||||
jumpifbytenotequal gBattlerTarget, gBattlersCount, BattleScript_BadDreamsLoop
|
||||
BattleScript_BadDreamsEnd:
|
||||
destroyabilitypopup
|
||||
end3
|
||||
|
||||
BattleScript_TookAttack::
|
||||
|
@ -1,8 +1,8 @@
|
||||
#include "config/battle.h"
|
||||
#include "constants/battle.h"
|
||||
#include "constants/battle_script_commands.h"
|
||||
#include "constants/battle_anim.h"
|
||||
#include "constants/battle_string_ids.h"
|
||||
#include "constants/battle_config.h"
|
||||
#include "constants/items.h"
|
||||
#include "constants/songs.h"
|
||||
#include "constants/game_stat.h"
|
||||
|
@ -1,8 +1,9 @@
|
||||
#include "config/battle.h"
|
||||
#include "config/item.h"
|
||||
#include "constants/global.h"
|
||||
#include "constants/apprentice.h"
|
||||
#include "constants/battle.h"
|
||||
#include "constants/battle_arena.h"
|
||||
#include "constants/battle_config.h"
|
||||
#include "constants/battle_dome.h"
|
||||
#include "constants/battle_factory.h"
|
||||
#include "constants/battle_frontier.h"
|
||||
@ -30,7 +31,6 @@
|
||||
#include "constants/frontier_util.h"
|
||||
#include "constants/game_stat.h"
|
||||
#include "constants/item.h"
|
||||
#include "constants/item_config.h"
|
||||
#include "constants/items.h"
|
||||
#include "constants/heal_locations.h"
|
||||
#include "constants/layouts.h"
|
||||
|
@ -47,14 +47,14 @@
|
||||
"y": 6,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_DECK",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 6,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_DECK",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -47,84 +47,84 @@
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_DECK",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_DECK",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_DECK",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_DECK",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 11,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 14,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS_1F",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 11,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 14,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS_1F",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS2_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 16,
|
||||
"y": 2,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 7
|
||||
"dest_warp_id": "7"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS2_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -47,56 +47,56 @@
|
||||
"y": 4,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS2_B1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS2_B1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS_B1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS_B1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 11,
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOMS_B1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 11,
|
||||
"y": 4,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_ROOM_B1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 2,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 10
|
||||
"dest_warp_id": "10"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 2,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 9
|
||||
"dest_warp_id": "9"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,35 +20,35 @@
|
||||
"y": 15,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ROUTE108",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 14,
|
||||
"y": 15,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ROUTE108",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 13,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 12,
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CAPTAINS_OFFICE",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,42 +20,42 @@
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_ROOMS",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_ROOMS",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_ROOMS",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_ROOMS",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_ROOMS",
|
||||
"dest_warp_id": 7
|
||||
"dest_warp_id": "7"
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_ROOMS",
|
||||
"dest_warp_id": 8
|
||||
"dest_warp_id": "8"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,63 +73,63 @@
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_CORRIDORS",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_CORRIDORS",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 21,
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_CORRIDORS",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 22,
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_CORRIDORS",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 36,
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_CORRIDORS",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 37,
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_CORRIDORS",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_CORRIDORS",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 21,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_CORRIDORS",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 36,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_HIDDEN_FLOOR_CORRIDORS",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -86,21 +86,21 @@
|
||||
"y": 16,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 8
|
||||
"dest_warp_id": "8"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 16,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 8
|
||||
"dest_warp_id": "8"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 11
|
||||
"dest_warp_id": "11"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -47,28 +47,28 @@
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 13,
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 14,
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,42 +73,42 @@
|
||||
"y": 16,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 16,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
},
|
||||
{
|
||||
"x": 13,
|
||||
"y": 16,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
},
|
||||
{
|
||||
"x": 13,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 7
|
||||
"dest_warp_id": "7"
|
||||
},
|
||||
{
|
||||
"x": 14,
|
||||
"y": 16,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_1F",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -47,21 +47,21 @@
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 13,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 22,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_CORRIDORS_B1F",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,14 +20,14 @@
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_UNDERWATER2",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_UNDERWATER2",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ABANDONED_SHIP_UNDERWATER1",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,7 +20,7 @@
|
||||
"y": 22,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_ROUTE103",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,21 +34,21 @@
|
||||
"y": 29,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ROUTE120",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 20,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_ANCIENT_TOMB",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ANCIENT_TOMB",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -60,21 +60,21 @@
|
||||
"y": 27,
|
||||
"elevation": 1,
|
||||
"dest_map": "MAP_LILYCOVE_CITY",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
},
|
||||
{
|
||||
"x": 14,
|
||||
"y": 27,
|
||||
"elevation": 1,
|
||||
"dest_map": "MAP_LILYCOVE_CITY",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
},
|
||||
{
|
||||
"x": 22,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -138,175 +138,175 @@
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 18,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B2F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 12,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B2F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B2F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 31,
|
||||
"y": 4,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 7
|
||||
"dest_warp_id": "7"
|
||||
},
|
||||
{
|
||||
"x": 27,
|
||||
"y": 4,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 8
|
||||
"dest_warp_id": "8"
|
||||
},
|
||||
{
|
||||
"x": 20,
|
||||
"y": 4,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 10
|
||||
"dest_warp_id": "10"
|
||||
},
|
||||
{
|
||||
"x": 27,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 15,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 20,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 12
|
||||
"dest_warp_id": "12"
|
||||
},
|
||||
{
|
||||
"x": 32,
|
||||
"y": 19,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
},
|
||||
{
|
||||
"x": 23,
|
||||
"y": 10,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 22
|
||||
"dest_warp_id": "22"
|
||||
},
|
||||
{
|
||||
"x": 45,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 9
|
||||
"dest_warp_id": "9"
|
||||
},
|
||||
{
|
||||
"x": 42,
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 18
|
||||
"dest_warp_id": "18"
|
||||
},
|
||||
{
|
||||
"x": 45,
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 12
|
||||
"dest_warp_id": "12"
|
||||
},
|
||||
{
|
||||
"x": 48,
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 16
|
||||
"dest_warp_id": "16"
|
||||
},
|
||||
{
|
||||
"x": 42,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 15
|
||||
"dest_warp_id": "15"
|
||||
},
|
||||
{
|
||||
"x": 45,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 20
|
||||
"dest_warp_id": "20"
|
||||
},
|
||||
{
|
||||
"x": 48,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 13
|
||||
"dest_warp_id": "13"
|
||||
},
|
||||
{
|
||||
"x": 42,
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 24
|
||||
"dest_warp_id": "24"
|
||||
},
|
||||
{
|
||||
"x": 45,
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 17
|
||||
"dest_warp_id": "17"
|
||||
},
|
||||
{
|
||||
"x": 48,
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 12
|
||||
"dest_warp_id": "12"
|
||||
},
|
||||
{
|
||||
"x": 42,
|
||||
"y": 17,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 11
|
||||
"dest_warp_id": "11"
|
||||
},
|
||||
{
|
||||
"x": 45,
|
||||
"y": 17,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 17
|
||||
"dest_warp_id": "17"
|
||||
},
|
||||
{
|
||||
"x": 48,
|
||||
"y": 17,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 19
|
||||
"dest_warp_id": "19"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -99,70 +99,70 @@
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 12,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 31,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B2F",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B2F",
|
||||
"dest_warp_id": 8
|
||||
"dest_warp_id": "8"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B2F",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 18,
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B2F",
|
||||
"dest_warp_id": 7
|
||||
"dest_warp_id": "7"
|
||||
},
|
||||
{
|
||||
"x": 12,
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B2F",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
},
|
||||
{
|
||||
"x": 31,
|
||||
"y": 17,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B2F",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 32,
|
||||
"y": 20,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_AQUA_HIDEOUT_B1F",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
}
|
||||
],
|
||||
"coord_events": [
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 17,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 13
|
||||
"dest_warp_id": "13"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 5,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_ARTISAN_CAVE_B1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 48,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 10
|
||||
"dest_warp_id": "10"
|
||||
},
|
||||
{
|
||||
"x": 38,
|
||||
"y": 5,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_ARTISAN_CAVE_1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -33,15 +33,15 @@
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_NONE",
|
||||
"dest_warp_id": 127
|
||||
"dest_map": "MAP_DYNAMIC",
|
||||
"dest_warp_id": "WARP_ID_DYNAMIC"
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_NONE",
|
||||
"dest_warp_id": 127
|
||||
"dest_map": "MAP_DYNAMIC",
|
||||
"dest_warp_id": "WARP_ID_DYNAMIC"
|
||||
}
|
||||
],
|
||||
"coord_events": [
|
||||
|
@ -19,29 +19,29 @@
|
||||
"x": 5,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_NONE",
|
||||
"dest_warp_id": 127
|
||||
"dest_map": "MAP_DYNAMIC",
|
||||
"dest_warp_id": "WARP_ID_DYNAMIC"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_NONE",
|
||||
"dest_warp_id": 127
|
||||
"dest_map": "MAP_DYNAMIC",
|
||||
"dest_warp_id": "WARP_ID_DYNAMIC"
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_NONE",
|
||||
"dest_warp_id": 127
|
||||
"dest_map": "MAP_DYNAMIC",
|
||||
"dest_warp_id": "WARP_ID_DYNAMIC"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_NONE",
|
||||
"dest_warp_id": 127
|
||||
"dest_map": "MAP_DYNAMIC",
|
||||
"dest_warp_id": "WARP_ID_DYNAMIC"
|
||||
}
|
||||
],
|
||||
"coord_events": [
|
||||
|
@ -86,7 +86,7 @@
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -99,14 +99,14 @@
|
||||
"y": 16,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 12,
|
||||
"y": 16,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -99,14 +99,14 @@
|
||||
"y": 11,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 10,
|
||||
"y": 11,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -86,14 +86,14 @@
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PALACE_CORRIDOR",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PALACE_CORRIDOR",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -112,28 +112,28 @@
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PALACE_LOBBY",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PALACE_LOBBY",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PALACE_BATTLE_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 10,
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PALACE_BATTLE_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -99,21 +99,21 @@
|
||||
"y": 11,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 13,
|
||||
"y": 11,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 4,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PALACE_CORRIDOR",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,21 +73,21 @@
|
||||
"y": 12,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 12,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 12,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,7 +73,7 @@
|
||||
"y": 17,
|
||||
"elevation": 4,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -60,14 +60,14 @@
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_TOWER_LOBBY",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_TOWER_LOBBY",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -138,21 +138,21 @@
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 13,
|
||||
"y": 9,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_TOWER_BATTLE_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -911,7 +911,7 @@ BattleFrontier_BattleTowerLobby_EventScript_ExitRules::
|
||||
end
|
||||
|
||||
@ Unused
|
||||
BattleFrontier_BattleTowerLobby_EventScript_DirectYouToBattleRoom:
|
||||
BattleFrontier_BattleTowerLobby_Text_DirectYouToBattleRoom:
|
||||
.string "I'll direct you to your BATTLE ROOM now.$"
|
||||
|
||||
BattleFrontier_BattleTowerLobby_Text_DidntSaveBeforeQuitting:
|
||||
|
@ -138,21 +138,21 @@
|
||||
"y": 10,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 10,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 10,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -60,7 +60,7 @@
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -86,14 +86,14 @@
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -86,7 +86,7 @@
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 9
|
||||
"dest_warp_id": "9"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -60,7 +60,7 @@
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 6
|
||||
"dest_warp_id": "6"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,14 +73,14 @@
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 7
|
||||
"dest_warp_id": "7"
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 7
|
||||
"dest_warp_id": "7"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,7 +34,7 @@
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 8
|
||||
"dest_warp_id": "8"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,7 +73,7 @@
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 7
|
||||
"dest_warp_id": "7"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -60,7 +60,7 @@
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 10
|
||||
"dest_warp_id": "10"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 11
|
||||
"dest_warp_id": "11"
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 11
|
||||
"dest_warp_id": "11"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,14 +73,14 @@
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -14,9 +14,9 @@
|
||||
"battle_scene": "MAP_BATTLE_SCENE_NORMAL",
|
||||
"connections": [
|
||||
{
|
||||
"direction": "left",
|
||||
"map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"offset": 0,
|
||||
"map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST"
|
||||
"direction": "left"
|
||||
}
|
||||
],
|
||||
"object_events": [
|
||||
@ -365,98 +365,98 @@
|
||||
"y": 14,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_TOWER_LOBBY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 39,
|
||||
"y": 29,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_ARENA_LOBBY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 45,
|
||||
"y": 56,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PALACE_LOBBY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 58,
|
||||
"y": 14,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PYRAMID_LOBBY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 35,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_RANKING_HALL",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 44,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_LOUNGE1",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 10,
|
||||
"y": 28,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_EXCHANGE_SERVICE_CORNER",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 22,
|
||||
"y": 51,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_LOUNGE5",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_LOUNGE6",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 65,
|
||||
"y": 31,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_LOUNGE3",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 14,
|
||||
"y": 51,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_LOUNGE8",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 21,
|
||||
"y": 45,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_LOUNGE9",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 51,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_POKEMON_CENTER_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 28,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_ARTISAN_CAVE_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -14,9 +14,9 @@
|
||||
"battle_scene": "MAP_BATTLE_SCENE_NORMAL",
|
||||
"connections": [
|
||||
{
|
||||
"direction": "right",
|
||||
"map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"offset": 0,
|
||||
"map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST"
|
||||
"direction": "right"
|
||||
}
|
||||
],
|
||||
"object_events": [
|
||||
@ -339,77 +339,77 @@
|
||||
"y": 27,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_PIKE_LOBBY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 19,
|
||||
"y": 17,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_DOME_LOBBY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 11,
|
||||
"y": 38,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_BATTLE_FACTORY_LOBBY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 45,
|
||||
"y": 44,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_LOUNGE2",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 51,
|
||||
"y": 51,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_MART",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 44,
|
||||
"y": 5,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_SCOTTS_HOUSE",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 53,
|
||||
"y": 44,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_LOUNGE4",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 20,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_LOUNGE7",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 26,
|
||||
"y": 65,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_RECEPTION_GATE",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 26,
|
||||
"y": 61,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_RECEPTION_GATE",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 39,
|
||||
"y": 55,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_ARTISAN_CAVE_B1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -86,21 +86,21 @@
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 12
|
||||
"dest_warp_id": "12"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 12
|
||||
"dest_warp_id": "12"
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"elevation": 4,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_POKEMON_CENTER_2F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,21 +73,21 @@
|
||||
"y": 6,
|
||||
"elevation": 4,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_POKEMON_CENTER_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_UNION_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_TRADE_CENTER",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -60,14 +60,14 @@
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 27,
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_EAST",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -86,14 +86,14 @@
|
||||
"y": 13,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 8
|
||||
"dest_warp_id": "8"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 9
|
||||
"dest_warp_id": "9"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 7,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_BATTLE_FRONTIER_OUTSIDE_WEST",
|
||||
"dest_warp_id": 5
|
||||
"dest_warp_id": "5"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -47,7 +47,7 @@
|
||||
"y": 24,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BIRTH_ISLAND_HARBOR",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -47,7 +47,7 @@
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_BIRTH_ISLAND_EXTERIOR",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,14 +20,14 @@
|
||||
"y": 17,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_ENTRANCE",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 14,
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_B1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,7 +34,7 @@
|
||||
"y": 3,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,14 +20,14 @@
|
||||
"y": 20,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_SOOTOPOLIS_CITY",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,14 +20,14 @@
|
||||
"y": 5,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_UNUSED_RUBY_SAPPHIRE_MAP2",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,14 +20,14 @@
|
||||
"y": 10,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_UNUSED_RUBY_SAPPHIRE_MAP1",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_UNUSED_RUBY_SAPPHIRE_MAP3",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,14 +20,14 @@
|
||||
"y": 14,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_UNUSED_RUBY_SAPPHIRE_MAP2",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_CAVE_OF_ORIGIN_B1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,21 +34,21 @@
|
||||
"y": 29,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_ROUTE111",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 20,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DESERT_RUINS",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_DESERT_RUINS",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,7 +34,7 @@
|
||||
"y": 12,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_ROUTE114_FOSSIL_MANIACS_TUNNEL",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -14,14 +14,14 @@
|
||||
"battle_scene": "MAP_BATTLE_SCENE_NORMAL",
|
||||
"connections": [
|
||||
{
|
||||
"direction": "up",
|
||||
"map": "MAP_ROUTE106",
|
||||
"offset": -60,
|
||||
"map": "MAP_ROUTE106"
|
||||
"direction": "up"
|
||||
},
|
||||
{
|
||||
"direction": "right",
|
||||
"map": "MAP_ROUTE107",
|
||||
"offset": 0,
|
||||
"map": "MAP_ROUTE107"
|
||||
"direction": "right"
|
||||
}
|
||||
],
|
||||
"object_events": [
|
||||
@ -97,35 +97,35 @@
|
||||
"y": 3,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN_HALL",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 10,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN_POKEMON_CENTER_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 17,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN_GYM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 17,
|
||||
"y": 14,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN_HOUSE1",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN_HOUSE2",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -125,14 +125,14 @@
|
||||
"y": 27,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 27,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -138,14 +138,14 @@
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -60,14 +60,14 @@
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -47,14 +47,14 @@
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -60,21 +60,21 @@
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_DEWFORD_TOWN",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"elevation": 4,
|
||||
"dest_map": "MAP_DEWFORD_TOWN_POKEMON_CENTER_2F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,21 +73,21 @@
|
||||
"y": 6,
|
||||
"elevation": 4,
|
||||
"dest_map": "MAP_DEWFORD_TOWN_POKEMON_CENTER_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_UNION_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_TRADE_CENTER",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -14,9 +14,9 @@
|
||||
"battle_scene": "MAP_BATTLE_SCENE_NORMAL",
|
||||
"connections": [
|
||||
{
|
||||
"direction": "left",
|
||||
"map": "MAP_ROUTE128",
|
||||
"offset": 40,
|
||||
"map": "MAP_ROUTE128"
|
||||
"direction": "left"
|
||||
}
|
||||
],
|
||||
"object_events": [],
|
||||
@ -26,28 +26,28 @@
|
||||
"y": 5,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_POKEMON_LEAGUE_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 27,
|
||||
"y": 48,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_POKEMON_CENTER_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 18,
|
||||
"y": 41,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_VICTORY_ROAD_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 18,
|
||||
"y": 27,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_VICTORY_ROAD_1F",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [
|
||||
|
@ -60,14 +60,14 @@
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL4",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL_OF_FAME",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL3",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL4",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL2",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL3",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,28 +20,28 @@
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_SIDNEYS_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_PHOEBES_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_SIDNEYS_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_SIDNEYS_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,28 +20,28 @@
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_PHOEBES_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_GLACIAS_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_PHOEBES_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_PHOEBES_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,28 +20,28 @@
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_GLACIAS_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_DRAKES_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_GLACIAS_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_GLACIAS_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,14 +20,14 @@
|
||||
"y": 33,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_DRAKES_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_CHAMPIONS_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -20,28 +20,28 @@
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_POKEMON_LEAGUE_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_SIDNEYS_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_POKEMON_LEAGUE_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 12,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_POKEMON_LEAGUE_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,7 +34,7 @@
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_CHAMPIONS_ROOM",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL1",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL2",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,21 +73,21 @@
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"elevation": 4,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_POKEMON_CENTER_2F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,21 +73,21 @@
|
||||
"y": 6,
|
||||
"elevation": 4,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_POKEMON_CENTER_1F",
|
||||
"dest_warp_id": 2
|
||||
"dest_warp_id": "2"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_UNION_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_TRADE_CENTER",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,35 +73,35 @@
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 10,
|
||||
"y": 11,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL5",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 10,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL5",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"elevation": 4,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_POKEMON_LEAGUE_2F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -73,21 +73,21 @@
|
||||
"y": 6,
|
||||
"elevation": 4,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_POKEMON_LEAGUE_1F",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_UNION_ROOM",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 1,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_TRADE_CENTER",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 13,
|
||||
"elevation": 3,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL5",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 2,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_EVER_GRANDE_CITY_HALL1",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -14,14 +14,14 @@
|
||||
"battle_scene": "MAP_BATTLE_SCENE_NORMAL",
|
||||
"connections": [
|
||||
{
|
||||
"direction": "left",
|
||||
"map": "MAP_ROUTE114",
|
||||
"offset": 0,
|
||||
"map": "MAP_ROUTE114"
|
||||
"direction": "left"
|
||||
},
|
||||
{
|
||||
"direction": "right",
|
||||
"map": "MAP_ROUTE113",
|
||||
"offset": 0,
|
||||
"map": "MAP_ROUTE113"
|
||||
"direction": "right"
|
||||
}
|
||||
],
|
||||
"object_events": [
|
||||
@ -84,35 +84,35 @@
|
||||
"y": 15,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN_MART",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN_BATTLE_TENT_LOBBY",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 14,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN_POKEMON_CENTER_1F",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 17,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN_COZMOS_HOUSE",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN_MOVE_RELEARNERS_HOUSE",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -86,14 +86,14 @@
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 9,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN",
|
||||
"dest_warp_id": 1
|
||||
"dest_warp_id": "1"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -47,14 +47,14 @@
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 8,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN",
|
||||
"dest_warp_id": 3
|
||||
"dest_warp_id": "3"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -86,14 +86,14 @@
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN",
|
||||
"dest_warp_id": 0
|
||||
"dest_warp_id": "0"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
@ -34,14 +34,14 @@
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 7,
|
||||
"elevation": 0,
|
||||
"dest_map": "MAP_FALLARBOR_TOWN",
|
||||
"dest_warp_id": 4
|
||||
"dest_warp_id": "4"
|
||||
}
|
||||
],
|
||||
"coord_events": [],
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user