release 6.2

This commit is contained in:
infinitefusion
2024-06-28 12:01:39 -04:00
parent 0b9e83f554
commit 3a488c9ba6
7249 changed files with 713866 additions and 136365 deletions

View File

@@ -10,6 +10,7 @@ end
def pbWarpToMapId
params = ChooseNumberParams.new
params.setRange(1,pbMapTree().length)
params.setDefaultValue($game_map.map_id)
map_id = pbMessageChooseNumber("map id?",params)
return [map_id,0,0]
end

View File

@@ -837,6 +837,16 @@ PokemonDebugMenuCommands.register("setgender", {
}
})
PokemonDebugMenuCommands.register("printInfo", {
"parent" => "main",
"name" => _INTL("Dump info"),
"always_show" => true,
"effect" => proc { |pkmn, pkmnid, heldpoke, settingUpBattle, screen|
pkmn.print_all_attributes
next false
}
})
PokemonDebugMenuCommands.register("speciesform", {
"parent" => "main",
"name" => _INTL("Species/form..."),