mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
Removes create PBS debug command
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -463,12 +463,16 @@ class PokemonOption_Scene
|
||||
# end
|
||||
options <<
|
||||
EnumOption.new(_INTL("Download sprites"), [_INTL("On"), _INTL("Off")],
|
||||
proc { $PokemonSystem.download_sprites ? 0 : 1 },
|
||||
proc { $PokemonSystem.download_sprites},
|
||||
proc { |value|
|
||||
$PokemonSystem.download_sprites = value },
|
||||
$PokemonSystem.download_sprites = value
|
||||
},
|
||||
"Automatically download custom sprites from the internet"
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
if $game_switches
|
||||
options <<
|
||||
EnumOption.new(_INTL("Autosave"), [_INTL("On"), _INTL("Off")],
|
||||
|
||||
@@ -1087,62 +1087,6 @@ DebugMenuCommands.register("compiledata", {
|
||||
}
|
||||
})
|
||||
|
||||
DebugMenuCommands.register("createpbs", {
|
||||
"parent" => "othermenu",
|
||||
"name" => _INTL("Create PBS File(s)"),
|
||||
"description" => _INTL("Choose one or all PBS files and create it."),
|
||||
"always_show" => true,
|
||||
"effect" => proc {
|
||||
cmd = 0
|
||||
cmds = [
|
||||
_INTL("[Create all]"),
|
||||
"abilities.txt",
|
||||
"berryplants.txt",
|
||||
"connections.txt",
|
||||
"encounters.txt",
|
||||
"items.txt",
|
||||
"metadata.txt",
|
||||
"moves.txt",
|
||||
"phone.txt",
|
||||
"pokemon.txt",
|
||||
"pokemonforms.txt",
|
||||
"regionaldexes.txt",
|
||||
"ribbons.txt",
|
||||
"shadowmoves.txt",
|
||||
"townmap.txt",
|
||||
"trainerlists.txt",
|
||||
"trainers.txt",
|
||||
"trainertypes.txt",
|
||||
"types.txt"
|
||||
]
|
||||
loop do
|
||||
cmd = pbShowCommands(nil, cmds, -1, cmd)
|
||||
case cmd
|
||||
when 0 then Compiler.write_all
|
||||
when 1 then Compiler.write_abilities
|
||||
when 2 then Compiler.write_berry_plants
|
||||
when 3 then Compiler.write_connections
|
||||
when 4 then Compiler.write_encounters
|
||||
when 5 then Compiler.write_items
|
||||
when 6 then Compiler.write_metadata
|
||||
when 7 then Compiler.write_moves
|
||||
when 8 then Compiler.write_phone
|
||||
when 9 then Compiler.write_pokemon
|
||||
when 10 then Compiler.write_pokemon_forms
|
||||
when 11 then Compiler.write_regional_dexes
|
||||
when 12 then Compiler.write_ribbons
|
||||
when 13 then Compiler.write_shadow_movesets
|
||||
when 14 then Compiler.write_town_map
|
||||
when 15 then Compiler.write_trainer_lists
|
||||
when 16 then Compiler.write_trainers
|
||||
when 17 then Compiler.write_trainer_types
|
||||
when 18 then Compiler.write_types
|
||||
else break
|
||||
end
|
||||
pbMessage(_INTL("File written."))
|
||||
end
|
||||
}
|
||||
})
|
||||
|
||||
DebugMenuCommands.register("renamesprites", {
|
||||
"parent" => "othermenu",
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user