Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a3c4e3f80d | ||
|
|
b95c954177 | ||
|
|
f2d25381f0 | ||
|
|
67988d56db | ||
|
|
e0fa62a4b8 | ||
|
|
99e381f018 | ||
|
|
4eee99829d | ||
|
|
f191713cd7 | ||
|
|
f788a31579 | ||
|
|
96e7ab30e9 | ||
|
|
309375673d | ||
|
|
4cd19750ef | ||
|
|
d82020f64b | ||
|
|
f21bd70b9a | ||
|
|
5fac90cd91 | ||
|
|
5ea17c8c6e | ||
|
|
4f87fb64c7 | ||
|
|
0c0a20f222 | ||
|
|
d78c950afc | ||
|
|
e3bb249849 | ||
|
|
3dcaaedfc9 | ||
|
|
5e9153a097 | ||
|
|
3a307cdabf | ||
|
|
9a7ffd13fc | ||
|
|
fed0e2be83 | ||
|
|
c9f043d7b3 | ||
|
|
31063a7a2e | ||
|
|
58640ec8cb | ||
|
|
695d00e351 | ||
|
|
502ff9197c | ||
|
|
8ca8bf9b9f | ||
|
|
085f73f7d1 | ||
|
|
9608cca26f |
33090
Data/CUSTOM_SPRITES
265103
Data/SPRITE_CREDS
@@ -5,8 +5,8 @@
|
|||||||
#==============================================================================#
|
#==============================================================================#
|
||||||
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 = '6.1.0'
|
||||||
GAME_VERSION_NUMBER = "6.1.0"
|
GAME_VERSION_NUMBER = "6.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
|
||||||
|
|||||||
@@ -97,6 +97,10 @@ class Game_Character
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def set_opacity(opacity)
|
||||||
|
@opacity = opacity
|
||||||
|
end
|
||||||
|
|
||||||
def move_speed=(val)
|
def move_speed=(val)
|
||||||
return if val == @move_speed
|
return if val == @move_speed
|
||||||
@move_speed = val
|
@move_speed = val
|
||||||
|
|||||||
@@ -84,6 +84,9 @@ end
|
|||||||
def pbStartOver(gameover=false)
|
def pbStartOver(gameover=false)
|
||||||
$game_variables[VAR_CURRENT_GYM_TYPE]=-1
|
$game_variables[VAR_CURRENT_GYM_TYPE]=-1
|
||||||
$game_switches[SWITCH_LOCK_PLAYER_MOVEMENT]=false
|
$game_switches[SWITCH_LOCK_PLAYER_MOVEMENT]=false
|
||||||
|
clear_all_images()
|
||||||
|
$game_player.set_opacity(255)
|
||||||
|
$game_system.menu_disabled=false
|
||||||
if pbInBugContest?
|
if pbInBugContest?
|
||||||
pbBugContestStartOver
|
pbBugContestStartOver
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -128,10 +128,8 @@ class Pokemon
|
|||||||
end
|
end
|
||||||
|
|
||||||
def species_data
|
def species_data
|
||||||
if !@species_data || @species != @species_data.species
|
@species_data = GameData::Species.get(@species)
|
||||||
@species_data = GameData::Species.get(@species)
|
return @species_data
|
||||||
end
|
|
||||||
return @species_data #GameData::Species.get(@species)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
@@ -231,17 +229,16 @@ class Pokemon
|
|||||||
end
|
end
|
||||||
|
|
||||||
def changeFormSpecies(oldForm, newForm)
|
def changeFormSpecies(oldForm, newForm)
|
||||||
is_already_old_form = self.isFusionOf(oldForm) #A 466
|
is_already_old_form = self.isFusionOf(oldForm) #A 466
|
||||||
is_already_new_form = self.isFusionOf(newForm) #P
|
is_already_new_form = self.isFusionOf(newForm) #P
|
||||||
|
|
||||||
|
|
||||||
#reverse the fusion if it's a meloA and meloP fusion
|
#reverse the fusion if it's a meloA and meloP fusion
|
||||||
# There's probably a smarter way to do this but laziness lol
|
# There's probably a smarter way to do this but laziness lol
|
||||||
if is_already_old_form && is_already_new_form
|
if is_already_old_form && is_already_new_form
|
||||||
if self.species_data.get_body_species() == oldForm
|
if self.species_data.get_body_species() == oldForm
|
||||||
changeSpeciesSpecific(self,getFusedPokemonIdFromSymbols(newForm,oldForm))
|
changeSpeciesSpecific(self, getFusedPokemonIdFromSymbols(newForm, oldForm))
|
||||||
else
|
else
|
||||||
changeSpeciesSpecific(self,getFusedPokemonIdFromSymbols(oldForm,newForm))
|
changeSpeciesSpecific(self, getFusedPokemonIdFromSymbols(oldForm, newForm))
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
changeSpecies(self, oldForm, newForm) if is_already_old_form
|
changeSpecies(self, oldForm, newForm) if is_already_old_form
|
||||||
@@ -251,11 +248,11 @@ class Pokemon
|
|||||||
calc_stats
|
calc_stats
|
||||||
end
|
end
|
||||||
|
|
||||||
def changeSpecies(pokemon, speciesToReplace,newSpecies)
|
def changeSpecies(pokemon, speciesToReplace, newSpecies)
|
||||||
if pokemon.isFusion?()
|
if pokemon.isFusion?()
|
||||||
replaceFusionSpecies(pokemon,speciesToReplace,newSpecies)
|
replaceFusionSpecies(pokemon, speciesToReplace, newSpecies)
|
||||||
else
|
else
|
||||||
changeSpeciesSpecific(pokemon,newSpecies)
|
changeSpeciesSpecific(pokemon, newSpecies)
|
||||||
end
|
end
|
||||||
$Trainer.pokedex.set_seen(pokemon.species)
|
$Trainer.pokedex.set_seen(pokemon.species)
|
||||||
$Trainer.pokedex.set_owned(pokemon.species)
|
$Trainer.pokedex.set_owned(pokemon.species)
|
||||||
|
|||||||
@@ -593,6 +593,7 @@ end
|
|||||||
oldindex = @index
|
oldindex = @index
|
||||||
pbGoToPrevious
|
pbGoToPrevious
|
||||||
if @index != oldindex
|
if @index != oldindex
|
||||||
|
@selected_index=0
|
||||||
pbUpdateDummyPokemon
|
pbUpdateDummyPokemon
|
||||||
@available = pbGetAvailableForms
|
@available = pbGetAvailableForms
|
||||||
pbSEStop
|
pbSEStop
|
||||||
@@ -603,6 +604,7 @@ end
|
|||||||
oldindex = @index
|
oldindex = @index
|
||||||
pbGoToNext
|
pbGoToNext
|
||||||
if @index != oldindex
|
if @index != oldindex
|
||||||
|
@selected_index=0
|
||||||
pbUpdateDummyPokemon
|
pbUpdateDummyPokemon
|
||||||
@available = pbGetAvailableForms
|
@available = pbGetAvailableForms
|
||||||
pbSEStop
|
pbSEStop
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ module GameData
|
|||||||
["Sea", "king"],
|
["Sea", "king"],
|
||||||
["Star", "yu"],
|
["Star", "yu"],
|
||||||
["Star", "mie"],
|
["Star", "mie"],
|
||||||
["Mr.", "mime"],
|
["Mr. ", "mime"],
|
||||||
["Scy", "ther"],
|
["Scy", "ther"],
|
||||||
["Jyn", "nx"],
|
["Jyn", "nx"],
|
||||||
["Electa", "buzz"],
|
["Electa", "buzz"],
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
module Settings
|
module Settings
|
||||||
SHINY_POKEMON_CHANCE = 16
|
SHINY_POKEMON_CHANCE = 32#16
|
||||||
CREDITS_FILE_URL = "https://gitlab.com/pokemoninfinitefusion/customsprites/-/raw/master/Sprite Credits.csv"
|
CREDITS_FILE_URL = "https://gitlab.com/pokemoninfinitefusion/customsprites/-/raw/master/Sprite Credits.csv"
|
||||||
SPRITES_FILE_URL = "https://raw.githubusercontent.com/infinitefusion/infinitefusion-e18/main/Data/CUSTOM_SPRITES"
|
SPRITES_FILE_URL = "https://raw.githubusercontent.com/infinitefusion/infinitefusion-e18/main/Data/CUSTOM_SPRITES"
|
||||||
VERSION_FILE_URL = "https://raw.githubusercontent.com/infinitefusion/infinitefusion-e18/main/Data/VERSION"
|
VERSION_FILE_URL = "https://raw.githubusercontent.com/infinitefusion/infinitefusion-e18/main/Data/VERSION"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
6.0
|
6.1
|
||||||
BIN
Data/species.dat
BIN
Graphics/127.png
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 771 B After Width: | Height: | Size: 783 B |
|
Before Width: | Height: | Size: 1021 B After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 480 B After Width: | Height: | Size: 407 B |
|
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 802 B |
|
Before Width: | Height: | Size: 993 B After Width: | Height: | Size: 798 B |
|
Before Width: | Height: | Size: 516 B After Width: | Height: | Size: 544 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 727 B |
|
Before Width: | Height: | Size: 494 B After Width: | Height: | Size: 387 B |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 409 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 899 B |
|
Before Width: | Height: | Size: 517 B After Width: | Height: | Size: 409 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 537 B After Width: | Height: | Size: 571 B |
|
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 293 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 895 B |
|
Before Width: | Height: | Size: 485 B After Width: | Height: | Size: 376 B |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 949 B |
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 382 B |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 545 B |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 861 B |
|
Before Width: | Height: | Size: 793 B After Width: | Height: | Size: 382 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 987 B |
|
Before Width: | Height: | Size: 494 B After Width: | Height: | Size: 387 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1016 B |
|
Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 422 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 516 B After Width: | Height: | Size: 377 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 996 B |
|
Before Width: | Height: | Size: 476 B After Width: | Height: | Size: 376 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 489 B After Width: | Height: | Size: 518 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 953 B |
|
Before Width: | Height: | Size: 477 B After Width: | Height: | Size: 376 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 426 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 465 B After Width: | Height: | Size: 426 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 979 B |
|
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 382 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 956 B |
|
Before Width: | Height: | Size: 495 B After Width: | Height: | Size: 381 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 494 B After Width: | Height: | Size: 383 B |
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 842 B |
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 388 B |
|
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 480 B After Width: | Height: | Size: 444 B |
|
Before Width: | Height: | Size: 923 B After Width: | Height: | Size: 740 B |
|
Before Width: | Height: | Size: 464 B After Width: | Height: | Size: 392 B |
|
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 885 B |
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 540 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1003 B |
|
Before Width: | Height: | Size: 503 B After Width: | Height: | Size: 396 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 937 B |
|
Before Width: | Height: | Size: 482 B After Width: | Height: | Size: 389 B |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 880 B |
|
Before Width: | Height: | Size: 881 B After Width: | Height: | Size: 373 B |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 2.5 KiB |