Skip to content

Commit

Permalink
Rename gen9vgc2024regg format to gen9vgc2025regg
Browse files Browse the repository at this point in the history
  • Loading branch information
hsahovic committed Dec 10, 2024
1 parent 82167ab commit e5af2cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fixture_data/teams.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"packed-format": "zuzu|azumarill|aguavberry|hugepower|aquajet,bellydrum,return,playrough|Adamant|44,252,18,4,18,172|F||S|67|211]metal bird|celesteela|leftovers|beastboost|protect,rockslide,heavyslam,leechseed|Impish|252,,72,,184,||,,,0,9,20|||144]Garchomp||choiceband|roughskin|rockslide,earthpower,outrage,aquatail|Jolly|8,252,,,,248|||S||]Greninja||choicespecs|protean|scald,icebeam,darkpulse,extrasensory|Timid|4,,,252,,252|M|29,0,3,6,21,23|||]Heatran||assaultvest|flashfire|overheat,flamethrower,flashcannon,earthpower|Modest|252,,,252,,4||,0,,,26,|||,Ice,]kaaaaaaa|kartana|focussash|beastboost|leafblade,sacredsword,swordsdance,xscissor|Jolly|4,252,,,,252||||62|200"
}
],
"gen9vgc2024regg": [
"gen9vgc2025regg": [
{
"showdown-file": "beastcoasttt-413XPlayz.showdown",
"packed-format": "Iron Hands||assaultvest|quarkdrive|fakeout,drainpunch,wildcharge,heavyslam|Adamant|4,156,4,,252,92||||50|,,,,,Water]Flutter Mane||boosterenergy|protosynthesis|moonblast,shadowball,icywind,protect|Timid|4,,196,148,4,156||,0,,,,||50|,,,,,Fairy]Landorus-Therian||choicescarf|intimidate|stompingtantrum,terablast,rockslide,uturn|Adamant|132,116,4,,4,252||||50|,,,,,Flying]Ogerpon-Wellspring||wellspringmask|waterabsorb|spikyshield,ivycudgel,hornleech,followme|Adamant|252,76,100,,12,68|F|||50|,,,,,Water]Chi-Yu||choicespecs|beadsofruin|heatwave,darkpulse,snarl,overheat|Timid|132,,4,108,12,252||,0,,,,||50|,,,,,Ghost]Sinistcha||rockyhelmet|hospitality|matchagotcha,ragepowder,trickroom,strengthsap|Bold|252,,252,4,,||,0,,,,||50|,,,,,Fairy"
Expand Down
4 changes: 2 additions & 2 deletions unit_tests/environment/test_pokemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def test_details():

def test_teambuilder(showdown_format_teams):
tb_mons = Teambuilder.parse_showdown_team(
showdown_format_teams["gen9vgc2024regg"][0]
showdown_format_teams["gen9vgc2025regg"][0]
)
mon = Pokemon(9, teambuilder=tb_mons[0])

Expand Down Expand Up @@ -274,7 +274,7 @@ def test_name(example_doubles_request):
def test_stats(example_request, showdown_format_teams):
request_mons = example_request["side"]["pokemon"]
tb_mons = Teambuilder.parse_showdown_team(
showdown_format_teams["gen9vgc2024regg"][0]
showdown_format_teams["gen9vgc2025regg"][0]
)

species_mon = Pokemon(9, species="furret")
Expand Down
6 changes: 3 additions & 3 deletions unit_tests/player/test_player_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,11 +259,11 @@ async def test_handle_ots_request(send_message_patch):
@pytest.mark.asyncio
async def test_create_teampreview_team(showdown_format_teams):
player = SimplePlayer(
battle_format="gen9vgc2024regg",
team=showdown_format_teams["gen9vgc2024regg"][0],
battle_format="gen9vgc2025regg",
team=showdown_format_teams["gen9vgc2025regg"][0],
)

battle = await player._create_battle(["", "gen9vgc2024regg", "uuu"])
battle = await player._create_battle(["", "gen9vgc2025regg", "uuu"])

assert len(battle.teampreview_team) == 6

Expand Down

0 comments on commit e5af2cd

Please sign in to comment.