small fixes

This commit is contained in:
infinitefusion
2021-08-01 15:01:36 -04:00
parent cd5a2caf94
commit a91485cb8f
6 changed files with 322 additions and 163 deletions

Binary file not shown.

View File

@@ -236,7 +236,11 @@ def pbTrainerName(name = nil, outfit = 0)
player_metadata = GameData::Metadata.get_player($Trainer.character_ID) player_metadata = GameData::Metadata.get_player($Trainer.character_ID)
trainer_type = (player_metadata) ? player_metadata[0] : nil trainer_type = (player_metadata) ? player_metadata[0] : nil
gender = pbGetTrainerTypeGender(trainer_type) gender = pbGetTrainerTypeGender(trainer_type)
name = pbSuggestTrainerName(gender) if(gender == 0)
return "Red"
else
return "Leaf"
end
end end
end end
$Trainer.name = name $Trainer.name = name

View File

@@ -613,163 +613,164 @@ class PokemonReadyMenu
end end
end end
class PokemonPokedexInfo_Scene #
def drawPageArea # class PokemonPokedexInfo_Scene
@sprites["background"].setBitmap(_INTL("Graphics/Pictures/Pokedex/bg_area")) # def drawPageArea
overlay = @sprites["overlay"].bitmap # @sprites["background"].setBitmap(_INTL("Graphics/Pictures/Pokedex/bg_area"))
base = Color.new(88,88,80) # overlay = @sprites["overlay"].bitmap
shadow = Color.new(168,184,184) # base = Color.new(88,88,80)
@sprites["areahighlight"].bitmap.clear # shadow = Color.new(168,184,184)
# @sprites["areahighlight"].bitmap.clear
mapwidth = @sprites["areamap"].bitmap.width/BetterRegionMap::TileWidth #
data = calculatePointsAndCenter(mapwidth) # mapwidth = @sprites["areamap"].bitmap.width/BetterRegionMap::TileWidth
# data = calculatePointsAndCenter(mapwidth)
points = data[0] #
minxy = data[1] # points = data[0]
maxxy = data[2] # minxy = data[1]
# maxxy = data[2]
# Draw coloured squares on each square of the region map with a nest #
pointcolor = Color.new(0,248,248) # # Draw coloured squares on each square of the region map with a nest
pointcolorhl = Color.new(192,248,248) # pointcolor = Color.new(0,248,248)
sqwidth = PokemonRegionMap_Scene::SQUAREWIDTH # pointcolorhl = Color.new(192,248,248)
sqheight = PokemonRegionMap_Scene::SQUAREHEIGHT # sqwidth = PokemonRegionMap_Scene::SQUAREWIDTH
# sqheight = PokemonRegionMap_Scene::SQUAREHEIGHT
#
# Center the window on the center of visible areas #
if minxy[0] != nil && maxxy[0] != nil # # Center the window on the center of visible areas
center_x = ((minxy[0]+maxxy[0])/2).round * sqwidth # if minxy[0] != nil && maxxy[0] != nil
center_y = ((minxy[1]+maxxy[1])/2).round * sqheight - 40 # center_x = ((minxy[0]+maxxy[0])/2).round * sqwidth
else # center_y = ((minxy[1]+maxxy[1])/2).round * sqheight - 40
center_x = Settings::SCREEN_WIDTH/2 # else
center_y = Settings::SCREEN_HEIGHT/2 - 40 # center_x = Settings::SCREEN_WIDTH/2
end # center_y = Settings::SCREEN_HEIGHT/2 - 40
# end
windowminx = -1 * (@sprites["areamap"].bmp.width - Settings::SCREEN_WIDTH + 16) #
windowminy = -1 * (@sprites["areamap"].bmp.height - Settings::SCREEN_HEIGHT + 16) # windowminx = -1 * (@sprites["areamap"].bmp.width - Settings::SCREEN_WIDTH + 16)
# windowminy = -1 * (@sprites["areamap"].bmp.height - Settings::SCREEN_HEIGHT + 16)
if center_x > (Settings::SCREEN_WIDTH / 2) #
@sprites["areamap"].x = (480 / 2 ) - center_x # if center_x > (Settings::SCREEN_WIDTH / 2)
if (@sprites["areamap"].x < windowminx) # @sprites["areamap"].x = (480 / 2 ) - center_x
@sprites["areamap"].x = windowminx # if (@sprites["areamap"].x < windowminx)
end # @sprites["areamap"].x = windowminx
else # end
@sprites["areamap"].x = windowminx # else
end # @sprites["areamap"].x = windowminx
if center_y > (Settings::SCREEN_HEIGHT / 2) # end
@sprites["areamap"].y = (320 / 2 ) - center_y # if center_y > (Settings::SCREEN_HEIGHT / 2)
if @sprites["areamap"].y < windowminy # @sprites["areamap"].y = (320 / 2 ) - center_y
@sprites["areamap"].y = windowminy # if @sprites["areamap"].y < windowminy
end # @sprites["areamap"].y = windowminy
else # end
@sprites["areamap"].y = windowminy # else
end # @sprites["areamap"].y = windowminy
# end
for j in 0...points.length #
if points[j] # for j in 0...points.length
x = (j%mapwidth)*sqwidth # if points[j]
x += @sprites["areamap"].x # x = (j%mapwidth)*sqwidth
y = (j/mapwidth)*sqheight # x += @sprites["areamap"].x
y += @sprites["areamap"].y - 8 # y = (j/mapwidth)*sqheight
@sprites["areahighlight"].bitmap.fill_rect(x,y,sqwidth,sqheight,pointcolor) # y += @sprites["areamap"].y - 8
if j-mapwidth<0 || !points[j-mapwidth] # @sprites["areahighlight"].bitmap.fill_rect(x,y,sqwidth,sqheight,pointcolor)
@sprites["areahighlight"].bitmap.fill_rect(x,y-2,sqwidth,2,pointcolorhl) # if j-mapwidth<0 || !points[j-mapwidth]
end # @sprites["areahighlight"].bitmap.fill_rect(x,y-2,sqwidth,2,pointcolorhl)
if j+mapwidth>=points.length || !points[j+mapwidth] # end
@sprites["areahighlight"].bitmap.fill_rect(x,y+sqheight,sqwidth,2,pointcolorhl) # if j+mapwidth>=points.length || !points[j+mapwidth]
end # @sprites["areahighlight"].bitmap.fill_rect(x,y+sqheight,sqwidth,2,pointcolorhl)
if j%mapwidth==0 || !points[j-1] # end
@sprites["areahighlight"].bitmap.fill_rect(x-2,y,2,sqheight,pointcolorhl) # if j%mapwidth==0 || !points[j-1]
end # @sprites["areahighlight"].bitmap.fill_rect(x-2,y,2,sqheight,pointcolorhl)
if (j+1)%mapwidth==0 || !points[j+1] # end
@sprites["areahighlight"].bitmap.fill_rect(x+sqwidth,y,2,sqheight,pointcolorhl) # if (j+1)%mapwidth==0 || !points[j+1]
end # @sprites["areahighlight"].bitmap.fill_rect(x+sqwidth,y,2,sqheight,pointcolorhl)
end # end
end # end
# end
# Set the text #
textpos = [] # # Set the text
if points.length==0 # textpos = []
pbDrawImagePositions(overlay,[ # if points.length==0
[sprintf("Graphics/Pictures/Pokedex/overlay_areanone"),108,188] # pbDrawImagePositions(overlay,[
]) # [sprintf("Graphics/Pictures/Pokedex/overlay_areanone"),108,188]
textpos.push([_INTL("Area unknown"),Graphics.width/2,Graphics.height/2,2,base,shadow]) # ])
end # textpos.push([_INTL("Area unknown"),Graphics.width/2,Graphics.height/2,2,base,shadow])
textpos.push([pbGetMessage(MessageTypes::RegionNames,@region),414,44,2,base,shadow]) # end
textpos.push([_INTL("{1}'s area",PBSpecies.getName(@species)), # textpos.push([pbGetMessage(MessageTypes::RegionNames,@region),414,44,2,base,shadow])
Graphics.width/2,352,2,base,shadow]) # textpos.push([_INTL("{1}'s area",PBSpecies.getName(@species)),
# Graphics.width/2,352,2,base,shadow])
textpos.push([_INTL("Full view"),Graphics.width/2,306,2,base,shadow]) #
pbDrawTextPositions(overlay,textpos) # textpos.push([_INTL("Full view"),Graphics.width/2,306,2,base,shadow])
end # pbDrawTextPositions(overlay,textpos)
end # end
# end
class PokemonPokedexInfo_Scene #
def pbScene # class PokemonPokedexInfo_Scene
pbPlayCrySpecies(@species,@form) # def pbScene
loop do # pbPlayCrySpecies(@species,@form)
Graphics.update # loop do
Input.update # Graphics.update
pbUpdate # Input.update
dorefresh = false # pbUpdate
if Input.trigger?(Input::A) # dorefresh = false
pbSEStop # if Input.trigger?(Input::A)
pbPlayCrySpecies(@species,@form) if @page==1 # pbSEStop
elsif Input.trigger?(Input::B) # pbPlayCrySpecies(@species,@form) if @page==1
pbPlayCloseMenuSE # elsif Input.trigger?(Input::B)
break # pbPlayCloseMenuSE
elsif Input.trigger?(Input::C) # break
if @page==2 # Area # elsif Input.trigger?(Input::C)
pbBetterRegionMap(@region,false,false,false,@species) # if @page==2 # Area
elsif @page==3 # Forms # pbBetterRegionMap(@region,false,false,false,@species)
if @available.length>1 # elsif @page==3 # Forms
pbPlayDecisionSE # if @available.length>1
pbChooseForm # pbPlayDecisionSE
dorefresh = true # pbChooseForm
end # dorefresh = true
end # end
elsif Input.trigger?(Input::UP) # end
oldindex = @index # elsif Input.trigger?(Input::UP)
pbGoToPrevious # oldindex = @index
if @index!=oldindex # pbGoToPrevious
pbUpdateDummyPokemon # if @index!=oldindex
@available = pbGetAvailableForms # pbUpdateDummyPokemon
pbSEStop # @available = pbGetAvailableForms
(@page==1) ? pbPlayCrySpecies(@species,@form) : pbPlayCursorSE # pbSEStop
dorefresh = true # (@page==1) ? pbPlayCrySpecies(@species,@form) : pbPlayCursorSE
end # dorefresh = true
elsif Input.trigger?(Input::DOWN) # end
oldindex = @index # elsif Input.trigger?(Input::DOWN)
pbGoToNext # oldindex = @index
if @index!=oldindex # pbGoToNext
pbUpdateDummyPokemon # if @index!=oldindex
@available = pbGetAvailableForms # pbUpdateDummyPokemon
pbSEStop # @available = pbGetAvailableForms
(@page==1) ? pbPlayCrySpecies(@species,@form) : pbPlayCursorSE # pbSEStop
dorefresh = true # (@page==1) ? pbPlayCrySpecies(@species,@form) : pbPlayCursorSE
end # dorefresh = true
elsif Input.trigger?(Input::LEFT) # end
oldpage = @page # elsif Input.trigger?(Input::LEFT)
@page -= 1 # oldpage = @page
@page = 1 if @page<1 # @page -= 1
@page = 3 if @page>3 # @page = 1 if @page<1
if @page!=oldpage # @page = 3 if @page>3
pbPlayCursorSE # if @page!=oldpage
dorefresh = true # pbPlayCursorSE
end # dorefresh = true
elsif Input.trigger?(Input::RIGHT) # end
oldpage = @page # elsif Input.trigger?(Input::RIGHT)
@page += 1 # oldpage = @page
@page = 1 if @page<1 # @page += 1
@page = 3 if @page>3 # @page = 1 if @page<1
if @page!=oldpage # @page = 3 if @page>3
pbPlayCursorSE # if @page!=oldpage
dorefresh = true # pbPlayCursorSE
end # dorefresh = true
end # end
if dorefresh # end
drawPage(@page) # if dorefresh
end # drawPage(@page)
end # end
return @index # end
end # return @index
end # end
# end

View File

@@ -29,7 +29,7 @@ module GameData
return (filename) ? AnimatedBitmap.new(filename) : nil return (filename) ? AnimatedBitmap.new(filename) : nil
end end
def self.back_sprite_bitmap(dex_number) def self.back_sprite_bitmap(dex_number,species=0, form = 0, gender = 0, shiny = false, shadow = false)
filename = self.sprite_filename(dex_number) filename = self.sprite_filename(dex_number)
return (filename) ? AnimatedBitmap.new(filename) : nil return (filename) ? AnimatedBitmap.new(filename) : nil
end end

Binary file not shown.

View File

@@ -56,6 +56,7 @@ Bicycle=true
MapPosition=0,23,3 MapPosition=0,23,3
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[009] [009]
# Route 25 # Route 25
Weather=Rain,10 Weather=Rain,10
@@ -64,6 +65,7 @@ MapPosition=0,25,1
Outdoor=true Outdoor=true
HealingSpot=8,17,11 HealingSpot=8,17,11
ShowArea=true ShowArea=true
Environment = Grass
[010] [010]
# Cerulean Cape # Cerulean Cape
Weather=HeavyRain,15 Weather=HeavyRain,15
@@ -71,6 +73,7 @@ Bicycle=true
MapPosition=0,27,1 MapPosition=0,27,1
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Sand
[011] [011]
# Bill's Lighthouse # Bill's Lighthouse
MapPosition=0,14,10 MapPosition=0,14,10
@@ -81,6 +84,7 @@ Bicycle=true
MapPosition=0,23,6 MapPosition=0,23,6
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[013] [013]
# Day Care Center # Day Care Center
MapPosition=0,14,10 MapPosition=0,14,10
@@ -203,6 +207,7 @@ MapPosition=0,11,6
Outdoor=true Outdoor=true
BicycleAlways=false BicycleAlways=false
ShowArea=true ShowArea=true
Environment = MovingWater
[041] [041]
# Ruins of Abet # Ruins of Abet
MapSize=1,111 MapSize=1,111
@@ -229,10 +234,12 @@ MapPosition=0,11,10
Outdoor=true Outdoor=true
BicycleAlways=false BicycleAlways=false
ShowArea=true ShowArea=true
Environment = TallGrass
[046] [046]
# Jungle1 # Jungle1
Bicycle=true Bicycle=true
MapPosition=0,12,6 MapPosition=0,12,6
Environment = TallGrass
[047] [047]
# Mt. Mortar # Mt. Mortar
MapSize=2,11 MapSize=2,11
@@ -242,6 +249,7 @@ MapPosition=0,15,10
DarkMap=true DarkMap=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Cave
[049] [049]
# Mahogany Town # Mahogany Town
Bicycle=true Bicycle=true
@@ -267,18 +275,22 @@ BattleBack=CaveIce
MapPosition=0,12,18 MapPosition=0,12,18
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[053] [053]
# Seafoam Islands # Seafoam Islands
BattleBack=CaveIce BattleBack=CaveIce
MapPosition=0,17,10 MapPosition=0,17,10
Environment = Cave
[054] [054]
# Seafoam Islands # Seafoam Islands
BattleBack=CaveIce BattleBack=CaveIce
MapPosition=0,17,10 MapPosition=0,17,10
Environment = Cave
[055] [055]
# Seafoam Islands # Seafoam Islands
BattleBack=CaveIce BattleBack=CaveIce
MapPosition=0,17,10 MapPosition=0,17,10
Environment = Cave
[056] [056]
# Surf Race # Surf Race
BattleBack=EliteA BattleBack=EliteA
@@ -289,12 +301,14 @@ Bicycle=true
MapPosition=0,18,18 MapPosition=0,18,18
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = MovingWater
[058] [058]
# Route 20 # Route 20
DiveMap=228 DiveMap=228
MapPosition=0,17,10 MapPosition=0,17,10
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = MovingWater
[059] [059]
# Route 21 # Route 21
DiveMap=229 DiveMap=229
@@ -303,6 +317,7 @@ Bicycle=true
MapPosition=0,17,10 MapPosition=0,17,10
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = MovingWater
[060] [060]
# PokeMart # PokeMart
MapPosition=0,17,10 MapPosition=0,17,10
@@ -327,6 +342,7 @@ MapPosition=0,17,10
MapPosition=0,27,8 MapPosition=0,27,8
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[066] [066]
# Eastern Gate # Eastern Gate
Bicycle=true Bicycle=true
@@ -360,6 +376,7 @@ MapPosition=0,13,13
MapPosition=0,7,10 MapPosition=0,7,10
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Cave
[073] [073]
# \PN's Room # \PN's Room
MapPosition=0,22,16 MapPosition=0,22,16
@@ -371,16 +388,19 @@ Bicycle=true
MapPosition=0,12,10 MapPosition=0,12,10
SafariMap=true SafariMap=true
Outdoor=false Outdoor=false
Environment = Grass
[075] [075]
# Area 2 # Area 2
MapPosition=1,13,16 MapPosition=1,13,16
SafariMap=true SafariMap=true
Outdoor=false Outdoor=false
Environment = Grass
[078] [078]
# Route 1 # Route 1
Bicycle=true Bicycle=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[079] [079]
# Viridian City # Viridian City
Bicycle=true Bicycle=true
@@ -392,12 +412,14 @@ ShowArea=true
# Area 3 # Area 3
SafariMap=true SafariMap=true
Outdoor=false Outdoor=false
Environment = Grass
[086] [086]
# Route 2 # Route 2
Bicycle=true Bicycle=true
MapPosition=0,12,8 MapPosition=0,12,8
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[088] [088]
# Gate # Gate
Bicycle=true Bicycle=true
@@ -448,30 +470,37 @@ MapPosition=0,16,5
Outdoor=true Outdoor=true
HealingSpot=101,61,12 HealingSpot=101,61,12
ShowArea=true ShowArea=true
Environment = Grass
[102] [102]
# Mt. Moon # Mt. Moon
Bicycle=true Bicycle=true
MapPosition=0,16,3 MapPosition=0,16,3
ShowArea=true ShowArea=true
Environment = Cave
[103] [103]
# Mt. Moon B1F # Mt. Moon B1F
Bicycle=true Bicycle=true
Environment = Cave
[104] [104]
# Mt. Moon # Mt. Moon
Bicycle=true Bicycle=true
Environment = Cave
[699] [699]
# Mt. Moon # Mt. Moon
Bicycle=true Bicycle=true
BattleBack=Cave BattleBack=Cave
Environment = Cave
[105] [105]
# Mt. Moon B2F # Mt. Moon B2F
Bicycle=true Bicycle=true
Environment = Cave
[106] [106]
# Route 4 # Route 4
Bicycle=true Bicycle=true
MapPosition=0,19,5 MapPosition=0,19,5
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[107] [107]
# Area 4 # Area 4
SafariMap=true SafariMap=true
@@ -549,6 +578,7 @@ ShowArea=true
Bicycle=true Bicycle=true
MapPosition=0,13,6 MapPosition=0,13,6
ShowArea=true ShowArea=true
Environment = Cave
[141] [141]
# Saffron City # Saffron City
MapPosition=0,21,2 MapPosition=0,21,2
@@ -563,16 +593,19 @@ BattleBack=Mountain
MapPosition=0,28,7 MapPosition=0,28,7
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Rock
[144] [144]
# Power Plant # Power Plant
MapPosition=0,27,6 MapPosition=0,27,6
ShowArea=true ShowArea=true
BattleBack=PowerPlant
[145] [145]
# Route 26 # Route 26
Bicycle=true Bicycle=true
MapPosition=0,16,12 MapPosition=0,16,12
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[146] [146]
# Route 17 # Route 17
MapSize=0, MapSize=0,
@@ -581,6 +614,7 @@ MapPosition=0,16,11
Outdoor=true Outdoor=true
BicycleAlways=true BicycleAlways=true
ShowArea=true ShowArea=true
Environment = Grass
[147] [147]
# Route 27 # Route 27
BattleBack= BattleBack=
@@ -588,6 +622,7 @@ Bicycle=true
MapPosition=0,15,17 MapPosition=0,15,17
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[149] [149]
# Flooded Cave # Flooded Cave
MapPosition=0,7,10 MapPosition=0,7,10
@@ -613,11 +648,13 @@ MapPosition=0,27,6
Outdoor=true Outdoor=true
HealingSpot=154,28,11 HealingSpot=154,28,11
ShowArea=true ShowArea=true
Environment = Grass
[155] [155]
# Route 11 # Route 11
MapPosition=0,25,11 MapPosition=0,25,11
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[156] [156]
# Saffron City # Saffron City
[158] [158]
@@ -629,6 +666,7 @@ DiveMap=162
MapPosition=0,27,12 MapPosition=0,27,12
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[160] [160]
# Messages # Messages
MapPosition=0,21,16 MapPosition=0,21,16
@@ -644,6 +682,7 @@ ShowArea=true
MapPosition=0,22,16 MapPosition=0,22,16
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Underwater
[163] [163]
# 8F # 8F
[164] [164]
@@ -677,6 +716,7 @@ ShowArea=false
MapPosition=0,9,10 MapPosition=0,9,10
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[172] [172]
# league check (unused) # league check (unused)
Weather=Rain,10 Weather=Rain,10
@@ -688,10 +728,12 @@ ShowArea=true
Bicycle=false Bicycle=false
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
BattleBack=Volcano
[174] [174]
# Pokémon Mansion # Pokémon Mansion
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
BattleBack=Volcano
[175] [175]
# MAP175 # MAP175
Outdoor=true Outdoor=true
@@ -708,6 +750,7 @@ ShowArea=false
# Bill's garden # Bill's garden
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[181] [181]
# Pokémon Mansion # Pokémon Mansion
ShowArea=true ShowArea=true
@@ -715,6 +758,7 @@ ShowArea=true
# Secret Garden # Secret Garden
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[188] [188]
# PokeMart # PokeMart
ShowArea=false ShowArea=false
@@ -727,8 +771,14 @@ Outdoor=false
[197] [197]
# Power Plant # Power Plant
Outdoor=false Outdoor=false
BattleBack=PowerPlant
[198]
# Power Plant
Outdoor=false
BattleBack=PowerPlant
[220] [220]
# Underwater # Underwater
Environment = Underwater
[230] [230]
# Violet City # Violet City
Bicycle=true Bicycle=true
@@ -741,9 +791,11 @@ Bicycle=true
DarkMap=true DarkMap=true
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[235] [235]
# Ruins of Alph # Ruins of Alph
Outdoor=false Outdoor=false
Environment = Cave
[237] [237]
# Goldenrod City # Goldenrod City
Bicycle=true Bicycle=true
@@ -759,6 +811,7 @@ Bicycle=true
MapPosition=1,12,12 MapPosition=1,12,12
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[255] [255]
# Gate # Gate
Bicycle=true Bicycle=true
@@ -766,17 +819,20 @@ Bicycle=true
# Tohjo Falls # Tohjo Falls
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[261] [261]
# Route 31 # Route 31
Bicycle=true Bicycle=true
MapPosition=1,18,11 MapPosition=1,18,11
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[262] [262]
# Route 30 # Route 30
MapPosition=1,20,14 MapPosition=1,20,14
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[263] [263]
# Gate # Gate
Bicycle=true Bicycle=true
@@ -788,6 +844,7 @@ HealingSpot=230,49,43
MapPosition=1,12,16 MapPosition=1,12,16
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[266] [266]
# Ilex Forest # Ilex Forest
BattleBack=Forest BattleBack=Forest
@@ -795,12 +852,14 @@ Bicycle=true
MapPosition=1,12,18 MapPosition=1,12,18
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Forest
[267] [267]
# Route 36 # Route 36
Bicycle=true Bicycle=true
MapPosition=1,15,10 MapPosition=1,15,10
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[272] [272]
# Sprout Tower # Sprout Tower
Outdoor=false Outdoor=false
@@ -816,12 +875,14 @@ ShowArea=true
MapPosition=1,15,18 MapPosition=1,15,18
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[284] [284]
# Route 33 # Route 33
Bicycle=true Bicycle=true
MapPosition=1,15,18 MapPosition=1,15,18
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[285] [285]
# Union Cave # Union Cave
BattleBack=Cave BattleBack=Cave
@@ -829,6 +890,7 @@ Bicycle=true
MapPosition=1,16,17 MapPosition=1,16,17
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[286] [286]
# Union Cave B1 # Union Cave B1
BattleBack=Cave BattleBack=Cave
@@ -836,6 +898,7 @@ Bicycle=true
MapPosition=1,16,17 MapPosition=1,16,17
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Cave
[287] [287]
# Union Cave B2 # Union Cave B2
BattleBack=Cave BattleBack=Cave
@@ -843,12 +906,14 @@ Bicycle=true
MapPosition=1,16,17 MapPosition=1,16,17
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Cave
[288] [288]
# Route 32 # Route 32
Bicycle=true Bicycle=true
MapPosition=1,16,14 MapPosition=1,16,14
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[295] [295]
# Intro # Intro
SnapEdges=true SnapEdges=true
@@ -859,26 +924,31 @@ Bicycle=true
MapPosition=1,12,7 MapPosition=1,12,7
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[303] [303]
# Indigo Plateau # Indigo Plateau
Bicycle=true Bicycle=true
Outdoor=true Outdoor=true
HealingSpot=303,15,7 HealingSpot=303,15,7
ShowArea=true ShowArea=true
Environment = Rock
[304] [304]
# Victory Road # Victory Road
BattleBack=Cave BattleBack=Cave
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[306] [306]
# Victory Road # Victory Road
BattleBack=Cave BattleBack=Cave
Outdoor=false Outdoor=false
Environment = Cave
[307] [307]
# Victory Road # Victory Road
BattleBack=Cave BattleBack=Cave
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Cave
[310] [310]
# Cherrygrove City # Cherrygrove City
Bicycle=true Bicycle=true
@@ -891,18 +961,21 @@ Bicycle=true
MapPosition=1,24,13 MapPosition=1,24,13
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[312] [312]
# Route 46 # Route 46
Bicycle=true Bicycle=true
MapPosition=1,23,12 MapPosition=1,23,12
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[322] [322]
# Cerulean Cave # Cerulean Cave
BattleBack=CaveDark BattleBack=CaveDark
Bicycle=true Bicycle=true
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[323] [323]
# Cerulean Cave # Cerulean Cave
BattleBack=CaveDark BattleBack=CaveDark
@@ -910,12 +983,14 @@ Bicycle=true
DarkMap=true DarkMap=true
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Cave
[324] [324]
# Cerulean Cave # Cerulean Cave
BattleBack=CaveDark BattleBack=CaveDark
Bicycle=true Bicycle=true
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Cave
[325] [325]
# Prof. Elm Lab. # Prof. Elm Lab.
Outdoor=false Outdoor=false
@@ -937,12 +1012,14 @@ BattleBack=Cave
Bicycle=false Bicycle=false
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[342] [342]
# Ruins of Alph # Ruins of Alph
Bicycle=true Bicycle=true
MapPosition=1,15,12 MapPosition=1,15,12
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Rock
[345] [345]
# Chamber A # Chamber A
Outdoor=false Outdoor=false
@@ -950,6 +1027,7 @@ ShowArea=true
[346] [346]
# Ruins of Alph # Ruins of Alph
Outdoor=false Outdoor=false
Environment = Cave
[347] [347]
# Chamber B # Chamber B
Outdoor=false Outdoor=false
@@ -964,16 +1042,19 @@ BattleBack=CaveDark
MapPosition=0,28,7 MapPosition=0,28,7
DarkMap=true DarkMap=true
ShowArea=true ShowArea=true
Environment = Cave
[350] [350]
# Rock Tunnel # Rock Tunnel
BattleBack=CaveDark BattleBack=CaveDark
MapPosition=0,28,7 MapPosition=0,28,7
DarkMap=true DarkMap=true
Environment = Cave
[351] [351]
# Route 9 # Route 9
MapPosition=0,27,6 MapPosition=0,27,6
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Rock
[352] [352]
# Chamber D # Chamber D
Outdoor=false Outdoor=false
@@ -997,6 +1078,7 @@ ShowArea=true
BattleBack=Forest BattleBack=Forest
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Forest
[359] [359]
# Ecruteak City # Ecruteak City
Bicycle=true Bicycle=true
@@ -1016,12 +1098,14 @@ BattleBack=CaveDark
DarkMap=true DarkMap=true
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[714] [714]
# Haunted house # Haunted house
BattleBack=CaveDark BattleBack=CaveDark
DarkMap=true DarkMap=true
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Graveyard
[365] [365]
# Cherrygrove City # Cherrygrove City
BattleBack=CaveIce BattleBack=CaveIce
@@ -1035,6 +1119,7 @@ HealingSpot=310,41,9
# Pewter Valley # Pewter Valley
BattleBack=Underwater BattleBack=Underwater
ShowArea=true ShowArea=true
Environment = Rock
[372] [372]
# Celadon Sewers # Celadon Sewers
DiveMap=382 DiveMap=382
@@ -1079,6 +1164,7 @@ Bicycle=true
[398] [398]
# Diglett's Cave # Diglett's Cave
Bicycle=true Bicycle=true
Environment = Cave
[399] [399]
# Diglett's Cave # Diglett's Cave
Bicycle=true Bicycle=true
@@ -1086,21 +1172,26 @@ Bicycle=true
# Pokémon Tower # Pokémon Tower
BattleBack=Tower BattleBack=Tower
ShowArea=true ShowArea=true
Environment = Graveyard
[401] [401]
# Pokemon Tower F2 # Pokemon Tower F2
BattleBack=Tower BattleBack=Tower
Environment = Graveyard
[402] [402]
# Pokemon Tower F3 # Pokemon Tower F3
BattleBack=Tower BattleBack=Tower
Environment = Graveyard
[403] [403]
# Pokemon Tower F4 # Pokemon Tower F4
BattleBack=Tower BattleBack=Tower
Environment = Graveyard
[409] [409]
# Route 8 # Route 8
Bicycle=true Bicycle=true
MapPosition=0,25,8 MapPosition=0,25,8
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[410] [410]
# Underground Gate # Underground Gate
Bicycle=true Bicycle=true
@@ -1116,6 +1207,7 @@ Bicycle=true
MapPosition=0,20,8 MapPosition=0,20,8
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[415] [415]
# Western Gate # Western Gate
Bicycle=true Bicycle=true
@@ -1126,6 +1218,7 @@ Bicycle=true
# Cyberspace # Cyberspace
BattleBack=Cyber BattleBack=Cyber
ShowArea=false ShowArea=false
Environment = UltraSpace
[425] [425]
# Underground Gate # Underground Gate
Bicycle=true Bicycle=true
@@ -1147,11 +1240,13 @@ Bicycle=true
MapPosition=0,26,13 MapPosition=0,26,13
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = StillWater
[438] [438]
# Route 16 # Route 16
Bicycle=true Bicycle=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[440] [440]
# Route 14 # Route 14
BattleBack=Swamp BattleBack=Swamp
@@ -1159,11 +1254,13 @@ Bicycle=true
MapPosition=0,22,16 MapPosition=0,22,16
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[444] [444]
# Route 15 # Route 15
BattleBack=Swamp BattleBack=Swamp
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[445] [445]
# Area 1 # Area 1
Bicycle=true Bicycle=true
@@ -1171,19 +1268,23 @@ MapPosition=0,19,14
SafariMap=true SafariMap=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[446] [446]
# Celadon Sewers # Celadon Sewers
BattleBack=SecuredRoom BattleBack=SecuredRoom
[467] [467]
# Pokemon Tower F5 # Pokemon Tower F5
BattleBack=Tower BattleBack=Tower
Environment = Graveyard
[468] [468]
# Pokemon Tower F6 # Pokemon Tower F6
BattleBack=Tower BattleBack=Tower
Environment = Graveyard
[469] [469]
# Pokemon Tower F7 # Pokemon Tower F7
BattleBack=Tower BattleBack=Tower
Dungeon=false Dungeon=false
Environment = Graveyard
[472] [472]
# Fuchsia City # Fuchsia City
MapSize=1,1 MapSize=1,1
@@ -1208,6 +1309,7 @@ MapPosition=0,19,14
SafariMap=true SafariMap=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[485] [485]
# Area 3 # Area 3
Bicycle=true Bicycle=true
@@ -1215,6 +1317,7 @@ MapPosition=0,19,14
SafariMap=true SafariMap=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[486] [486]
# Area 4 # Area 4
Bicycle=true Bicycle=true
@@ -1222,6 +1325,7 @@ MapPosition=0,19,14
SafariMap=true SafariMap=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[487] [487]
# Area 5 # Area 5
Bicycle=true Bicycle=true
@@ -1229,6 +1333,7 @@ MapPosition=0,19,14
SafariMap=true SafariMap=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Sand
[717] [717]
# Area 5 house # Area 5 house
SafariMap=true SafariMap=true
@@ -1240,6 +1345,7 @@ MapPosition=0,19,14
SafariMap=true SafariMap=true
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Rock
[489] [489]
# Secret Area # Secret Area
Bicycle=true Bicycle=true
@@ -1253,6 +1359,7 @@ Bicycle=true
MapPosition=0,15,5 MapPosition=0,15,5
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[491] [491]
# Viridian Forest # Viridian Forest
BattleBack=Forest BattleBack=Forest
@@ -1260,6 +1367,7 @@ Bicycle=true
MapPosition=0,11,7 MapPosition=0,11,7
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Forest
[492] [492]
# Gate # Gate
Bicycle=true Bicycle=true
@@ -1268,12 +1376,14 @@ Bicycle=true
Bicycle=true Bicycle=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[495] [495]
# Route 9 # Route 9
Bicycle=true Bicycle=true
MapPosition=0,25,5 MapPosition=0,25,5
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Rock
[496] [496]
# Mt. Moon # Mt. Moon
Bicycle=true Bicycle=true
@@ -1290,6 +1400,7 @@ BattleBack=Field
MapPosition=0,17,16 MapPosition=0,17,16
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[518] [518]
# Gate # Gate
Bicycle=true Bicycle=true
@@ -1302,6 +1413,7 @@ Outdoor=false
BattleBack=Cave BattleBack=Cave
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Cave
[526] [526]
# Knot Island # Knot Island
Bicycle=true Bicycle=true
@@ -1316,12 +1428,14 @@ Bicycle=true
MapPosition=2,3,14 MapPosition=2,3,14
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Sand
[529] [529]
# Mt. Silver # Mt. Silver
BattleBack=Field BattleBack=Field
Bicycle=true Bicycle=true
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Rock
[532] [532]
# Pokémon Center # Pokémon Center
HealingSpot=526,27,12 HealingSpot=526,27,12
@@ -1332,6 +1446,7 @@ Bicycle=true
MapPosition=2,5,11 MapPosition=2,5,11
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Sand
[560] [560]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
@@ -1344,6 +1459,7 @@ Bicycle=true
MapPosition=2,5,5 MapPosition=2,5,5
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Volcano
[562] [562]
# Boon Island # Boon Island
Bicycle=true Bicycle=true
@@ -1362,12 +1478,14 @@ Bicycle=true
MapPosition=2,14,11 MapPosition=2,14,11
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = MovingWater
[566] [566]
# Resort Gorgeous # Resort Gorgeous
Bicycle=true Bicycle=true
MapPosition=2,22,12 MapPosition=2,22,12
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = MovingWater
[567] [567]
# Pokémon Center # Pokémon Center
HealingSpot=563,31,36 HealingSpot=563,31,36
@@ -1377,14 +1495,17 @@ HealingSpot=562,26,46
[569] [569]
# Ruby Chamber # Ruby Chamber
ShowArea=true ShowArea=true
BattleBack=Volcano BattleBack=Lava
Environment = Volcano
[570] [570]
# Deep Sea # Deep Sea
DiveMap=560 DiveMap=560
Outdoor=true Outdoor=true
Environment = MovingWater
[573] [573]
# Newmoon Island # Newmoon Island
ShowArea=true ShowArea=true
Environment = Graveyard
[577] [577]
# Pokémon Center # Pokémon Center
HealingSpot=359,38,38 HealingSpot=359,38,38
@@ -1395,6 +1516,7 @@ Bicycle=true
MapPosition=1,18,5 MapPosition=1,18,5
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[585] [585]
# Bell Tower # Bell Tower
ShowArea=true ShowArea=true
@@ -1404,14 +1526,17 @@ Bicycle=true
MapPosition=1,14,6 MapPosition=1,14,6
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[588] [588]
# Sapphire Cave # Sapphire Cave
ShowArea=true ShowArea=true
Environment = Underwater
[589] [589]
# Sinjoh ruins # Sinjoh ruins
Weather=Snow,100 Weather=Snow,100
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Snow
[594] [594]
# Water Labyrinth # Water Labyrinth
DiveMap=606 DiveMap=606
@@ -1419,27 +1544,32 @@ Bicycle=true
MapPosition=2,19,15 MapPosition=2,19,15
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = MovingWater
[596] [596]
# Sky Pillar # Sky Pillar
Bicycle=true Bicycle=true
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[597] [597]
# Sky Pillar # Sky Pillar
Bicycle=true Bicycle=true
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Cave
[600] [600]
# Bond bridge # Bond bridge
Bicycle=true Bicycle=true
MapPosition=2,15,7 MapPosition=2,15,7
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[601] [601]
# Sealed Chamber # Sealed Chamber
MapPosition=2,20,17 MapPosition=2,20,17
Outdoor=false Outdoor=false
ShowArea=true ShowArea=true
Environment = Cave
[603] [603]
# Chrono Island # Chrono Island
Bicycle=true Bicycle=true
@@ -1460,6 +1590,7 @@ ShowArea=true
BattleBack=ForestEve BattleBack=ForestEve
Bicycle=true Bicycle=true
ShowArea=true ShowArea=true
Environment = Forest
[621] [621]
# P2 Laboratory # P2 Laboratory
Bicycle=true Bicycle=true
@@ -1478,39 +1609,47 @@ HealingSpot=631,29,26
BattleBack=IndoorB BattleBack=IndoorB
Bicycle=true Bicycle=true
ShowArea=true ShowArea=true
Environment = Cave
[634] [634]
# Sky Pillar # Sky Pillar
BattleBack=IndoorB BattleBack=IndoorB
Bicycle=true Bicycle=true
Environment = Cave
[635] [635]
# Route 43 # Route 43
MapPosition=1,19,3 MapPosition=1,19,3
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass
[638] [638]
# Lake of Rage # Lake of Rage
Bicycle=true Bicycle=true
MapPosition=1,19,1 MapPosition=1,19,1
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = StillWater
[639] [639]
# Sky Pillar # Sky Pillar
BattleBack=IndoorB BattleBack=IndoorB
Bicycle=true Bicycle=true
Environment = Cave
[640] [640]
# Sky Pillar # Sky Pillar
BattleBack=IndoorB BattleBack=IndoorB
Bicycle=true Bicycle=true
Environment = Cave
[641] [641]
# Sky Pillar # Sky Pillar
BattleBack=IndoorB BattleBack=IndoorB
Bicycle=true Bicycle=true
Environment = Cave
[645] [645]
# Lake of Rage # Lake of Rage
Bicycle=true Bicycle=true
MapPosition=1,19,1 MapPosition=1,19,1
Outdoor=false Outdoor=false
ShowArea=false ShowArea=false
Environment = Snow
[646] [646]
# Lake of Rage # Lake of Rage
HealingSpot=638,35,38 HealingSpot=638,35,38
@@ -1519,6 +1658,7 @@ HealingSpot=638,35,38
BattleBack=Forest BattleBack=Forest
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Forest
[660] [660]
# 2F # 2F
ShowArea=true ShowArea=true
@@ -1554,66 +1694,79 @@ Bicycle=true
MapPosition=1,25,4 MapPosition=1,25,4
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Snow
[678] [678]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=false DarkMap=false
Environment = Underwater
[679] [679]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=false DarkMap=false
Environment = Underwater
[680] [680]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=false DarkMap=false
Environment = Underwater
[681] [681]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=false DarkMap=false
Environment = Underwater
[682] [682]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=true DarkMap=true
Environment = Underwater
[683] [683]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=true DarkMap=true
Environment = Underwater
[684] [684]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=true DarkMap=true
Environment = Underwater
[685] [685]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=true DarkMap=true
Environment = Underwater
[686] [686]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=true DarkMap=true
Environment = Underwater
[687] [687]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=true DarkMap=true
Environment = Underwater
[688] [688]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=true DarkMap=true
Environment = Underwater
[689] [689]
# Underwater # Underwater
BattleBack=Underwater BattleBack=Underwater
MapPosition=2,8,12 MapPosition=2,8,12
DarkMap=true DarkMap=true
Environment = Underwater
[692] [692]
# Route 44 # Route 44
MapSize=3, MapSize=3,
@@ -1621,3 +1774,4 @@ Bicycle=true
MapPosition=1,22,6 MapPosition=1,22,6
Outdoor=true Outdoor=true
ShowArea=true ShowArea=true
Environment = Grass