@@ -1098,6 +1098,7 @@ def lost_ball_during_saver(context):
1098
1098
BANK_OFFSET_BALL_SAVED_RED = (3 , 0x5D7F )
1099
1099
BANK_OFFSET_BALL_SAVED_BLUE = (3 , 0x5E58 )
1100
1100
1101
+ """The wild Pokemon that can be found in each map in the Red stage, along with their encounter rates"""
1101
1102
RedStageMapWildMons = {
1102
1103
Maps .PALLET_TOWN : {
1103
1104
Pokemon .BULBASAUR : 0.0625 ,
@@ -1172,7 +1173,12 @@ def lost_ball_during_saver(context):
1172
1173
Pokemon .GOLDEEN : 0.125 ,
1173
1174
Pokemon .MAGIKARP : 0.125 ,
1174
1175
},
1175
- Maps .SAFARI_ZONE : {Pokemon .NIDORAN_M : 0.25 , Pokemon .PARAS : 0.25 , Pokemon .DODUO : 0.25 , Pokemon .RHYHORN : 0.25 },
1176
+ Maps .SAFARI_ZONE : {
1177
+ Pokemon .NIDORAN_M : 0.25 ,
1178
+ Pokemon .PARAS : 0.25 ,
1179
+ Pokemon .DODUO : 0.25 ,
1180
+ Pokemon .RHYHORN : 0.25
1181
+ },
1176
1182
Maps .SEAFOAM_ISLANDS : {
1177
1183
Pokemon .ZUBAT : 0.0625 ,
1178
1184
Pokemon .PSYDUCK : 0.0625 ,
@@ -1202,7 +1208,7 @@ def lost_ball_during_saver(context):
1202
1208
Pokemon .DITTO : 0.1875 ,
1203
1209
},
1204
1210
}
1205
- """The wild Pokemon that can be found in each map in the Red stage, along with their encounter rates"""
1211
+
1206
1212
1207
1213
RedStageMapWildMonsRare = {
1208
1214
Maps .PALLET_TOWN : {
@@ -1286,7 +1292,12 @@ def lost_ball_during_saver(context):
1286
1292
Pokemon .TAUROS : 0.125 ,
1287
1293
Pokemon .DRATINI : 0.125 ,
1288
1294
},
1289
- Maps .SEAFOAM_ISLANDS : {Pokemon .SEEL : 0.3125 , Pokemon .GOLDEEN : 0.25 , Pokemon .STARYU : 0.25 , Pokemon .ARTICUNO : 0.1875 },
1295
+ Maps .SEAFOAM_ISLANDS : {
1296
+ Pokemon .SEEL : 0.3125 ,
1297
+ Pokemon .GOLDEEN : 0.25 ,
1298
+ Pokemon .STARYU : 0.25 ,
1299
+ Pokemon .ARTICUNO : 0.1875
1300
+ },
1290
1301
Maps .CINNABAR_ISLAND : {
1291
1302
Pokemon .GROWLITHE : 0.125 ,
1292
1303
Pokemon .PONYTA : 0.125 ,
@@ -1309,7 +1320,7 @@ def lost_ball_during_saver(context):
1309
1320
Pokemon .MEW : 0.0625 ,
1310
1321
},
1311
1322
}
1312
- """The rare wild Pokemon that can be found in each map in the Red stage, along with their encounter rates"""
1323
+ """The wild Pokemon that can be found in each map in the Blue stage, along with their encounter rates"""
1313
1324
1314
1325
BlueStageMapWildMons = {
1315
1326
Maps .VIRIDIAN_CITY : {
@@ -1389,7 +1400,12 @@ def lost_ball_during_saver(context):
1389
1400
Pokemon .GOLDEEN : 0.1875 ,
1390
1401
Pokemon .MAGIKARP : 0.25 ,
1391
1402
},
1392
- Maps .SAFARI_ZONE : {Pokemon .NIDORAN_F : 0.25 , Pokemon .PARAS : 0.25 , Pokemon .DODUO : 0.25 , Pokemon .RHYHORN : 0.25 },
1403
+ Maps .SAFARI_ZONE : {
1404
+ Pokemon .NIDORAN_F : 0.25 ,
1405
+ Pokemon .PARAS : 0.25 ,
1406
+ Pokemon .DODUO : 0.25 ,
1407
+ Pokemon .RHYHORN : 0.25
1408
+ },
1393
1409
Maps .SAFFRON_CITY : {
1394
1410
Pokemon .PIDGEY : 0.125 ,
1395
1411
Pokemon .EKANS : 0.1875 ,
@@ -1418,7 +1434,6 @@ def lost_ball_during_saver(context):
1418
1434
Pokemon .DITTO : 0.1875 ,
1419
1435
},
1420
1436
}
1421
- """The wild Pokemon that can be found in each map in the Blue stage, along with their encounter rates"""
1422
1437
1423
1438
BlueStageMapWildMonsRare = {
1424
1439
Maps .VIRIDIAN_CITY : {
@@ -1535,5 +1550,4 @@ def lost_ball_during_saver(context):
1535
1550
Pokemon .MEWTWO : 0.1875 ,
1536
1551
Pokemon .MEW : 0.0625 ,
1537
1552
},
1538
- }
1539
- """The rare wild Pokemon that can be found in each map in the Blue stage, along with their encounter rates"""
1553
+ }
0 commit comments