This commit is contained in:
infinitefusion
2023-10-19 22:45:08 -04:00
23 changed files with 89858 additions and 83386 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
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.
+89842 -83379
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -6,7 +6,7 @@
module Settings module Settings
# The version of your game. It has to adhere to the MAJOR.MINOR.PATCH format. # The version of your game. It has to adhere to the MAJOR.MINOR.PATCH format.
GAME_VERSION = '5.0.0' GAME_VERSION = '5.0.0'
GAME_VERSION_NUMBER = "5.3.1.2" GAME_VERSION_NUMBER = "5.3.1.3"
POKERADAR_LIGHT_ANIMATION_RED_ID = 17 POKERADAR_LIGHT_ANIMATION_RED_ID = 17
POKERADAR_LIGHT_ANIMATION_GREEN_ID = 18 POKERADAR_LIGHT_ANIMATION_GREEN_ID = 18
@@ -82,11 +82,13 @@ Kiwi
Sprite Managers Sprite Managers
avianAnnihilator<s>Blaquaza avianAnnihilator<s>Blaquaza
BéBoutton<s>Howls BéBoutton<s>CaBiNE
Ignus<s>Kiwi CoramSun<s>hero.drawing
Maelmc<s>Milchik the Miltank Howls<s>Ignus
rezza<s>Skel'n Kiwi<s>Maelmc
Thorns<s>TM Milchik the Miltank<s>Payapon
Pix<s>Rosemagwin
Thorns
All of the custom fused Pokémon sprites All of the custom fused Pokémon sprites
+6 -1
View File
@@ -285,7 +285,9 @@ class PokemonLoadScreen
def try_load_backup(file_path) def try_load_backup(file_path)
if File.file?(file_path + ".bak") if File.file?(file_path + ".bak")
pbMessage(_INTL("The save file is corrupt. A backup will be loaded.")) pbMessage(_INTL("The save file is corrupt. A backup will be loaded."))
save_data = load_save_file(file_path + ".bak") file_copy(file_path, SaveData.get_backup_file_path)
File.rename(file_path + '.bak', file_path)
save_data = load_save_file(file_path)
else else
self.prompt_save_deletion(file_path) self.prompt_save_deletion(file_path)
return {} return {}
@@ -694,6 +696,9 @@ module Game
$Trainer.save_slot = slot unless auto $Trainer.save_slot = slot unless auto
$Trainer.last_time_saved = Time.now $Trainer.last_time_saved = Time.now
begin begin
if File.exists?(file_path)
file_copy(file_path, file_path + '.bak')
end
SaveData.save_to_file(file_path) SaveData.save_to_file(file_path)
Graphics.frame_reset Graphics.frame_reset
rescue IOError, SystemCallError rescue IOError, SystemCallError
@@ -1569,6 +1569,8 @@ def pbUnfuse(pokemon, scene, supersplicers, pcPosition = nil)
#On ajoute l'autre dans le pokedex aussi #On ajoute l'autre dans le pokedex aussi
$Trainer.pokedex.set_seen(poke1.species) $Trainer.pokedex.set_seen(poke1.species)
$Trainer.pokedex.set_owned(poke1.species) $Trainer.pokedex.set_owned(poke1.species)
$Trainer.pokedex.set_seen(poke2.species)
$Trainer.pokedex.set_owned(poke2.species)
pokemon.species = poke1.species pokemon.species = poke1.species
pokemon.level = poke1.level pokemon.level = poke1.level
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.