Skip to content

Commit 4cf8acd

Browse files
NicoleFayeBaekalfen
authored andcommitted
fix comments for catch rates
1 parent 0d0afa6 commit 4cf8acd

File tree

1 file changed

+22
-8
lines changed

1 file changed

+22
-8
lines changed

pyboy/plugins/game_wrapper_pokemon_pinball.py

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,6 +1098,7 @@ def lost_ball_during_saver(context):
10981098
BANK_OFFSET_BALL_SAVED_RED = (3, 0x5D7F)
10991099
BANK_OFFSET_BALL_SAVED_BLUE = (3, 0x5E58)
11001100

1101+
"""The wild Pokemon that can be found in each map in the Red stage, along with their encounter rates"""
11011102
RedStageMapWildMons = {
11021103
Maps.PALLET_TOWN: {
11031104
Pokemon.BULBASAUR: 0.0625,
@@ -1172,7 +1173,12 @@ def lost_ball_during_saver(context):
11721173
Pokemon.GOLDEEN: 0.125,
11731174
Pokemon.MAGIKARP: 0.125,
11741175
},
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+
},
11761182
Maps.SEAFOAM_ISLANDS: {
11771183
Pokemon.ZUBAT: 0.0625,
11781184
Pokemon.PSYDUCK: 0.0625,
@@ -1202,7 +1208,7 @@ def lost_ball_during_saver(context):
12021208
Pokemon.DITTO: 0.1875,
12031209
},
12041210
}
1205-
"""The wild Pokemon that can be found in each map in the Red stage, along with their encounter rates"""
1211+
12061212

12071213
RedStageMapWildMonsRare = {
12081214
Maps.PALLET_TOWN: {
@@ -1286,7 +1292,12 @@ def lost_ball_during_saver(context):
12861292
Pokemon.TAUROS: 0.125,
12871293
Pokemon.DRATINI: 0.125,
12881294
},
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+
},
12901301
Maps.CINNABAR_ISLAND: {
12911302
Pokemon.GROWLITHE: 0.125,
12921303
Pokemon.PONYTA: 0.125,
@@ -1309,7 +1320,7 @@ def lost_ball_during_saver(context):
13091320
Pokemon.MEW: 0.0625,
13101321
},
13111322
}
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"""
13131324

13141325
BlueStageMapWildMons = {
13151326
Maps.VIRIDIAN_CITY: {
@@ -1389,7 +1400,12 @@ def lost_ball_during_saver(context):
13891400
Pokemon.GOLDEEN: 0.1875,
13901401
Pokemon.MAGIKARP: 0.25,
13911402
},
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+
},
13931409
Maps.SAFFRON_CITY: {
13941410
Pokemon.PIDGEY: 0.125,
13951411
Pokemon.EKANS: 0.1875,
@@ -1418,7 +1434,6 @@ def lost_ball_during_saver(context):
14181434
Pokemon.DITTO: 0.1875,
14191435
},
14201436
}
1421-
"""The wild Pokemon that can be found in each map in the Blue stage, along with their encounter rates"""
14221437

14231438
BlueStageMapWildMonsRare = {
14241439
Maps.VIRIDIAN_CITY: {
@@ -1535,5 +1550,4 @@ def lost_ball_during_saver(context):
15351550
Pokemon.MEWTWO: 0.1875,
15361551
Pokemon.MEW: 0.0625,
15371552
},
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

Comments
 (0)