mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
more safeguards for wrong files credit format + added sprite managers to game credits
This commit is contained in:
Binary file not shown.
@@ -77,6 +77,18 @@ off Pokémon Red and Blue, as well as
|
|||||||
Pokémon Gold and Silver.
|
Pokémon Gold and Silver.
|
||||||
Both games are made by Game Freak.
|
Both games are made by Game Freak.
|
||||||
|
|
||||||
|
Sprites pack manager
|
||||||
|
Kiwi
|
||||||
|
|
||||||
|
Sprite Managers
|
||||||
|
Howls
|
||||||
|
Kiwi
|
||||||
|
Melmcs
|
||||||
|
Milchik the Miltank
|
||||||
|
rezza
|
||||||
|
Punko
|
||||||
|
Skel'n
|
||||||
|
|
||||||
All of the custom fused Pokémon sprites
|
All of the custom fused Pokémon sprites
|
||||||
were made by various members of the sp
|
were made by various members of the sp
|
||||||
Pokémon Infinite Fusion Discord
|
Pokémon Infinite Fusion Discord
|
||||||
|
|||||||
@@ -82,7 +82,11 @@ end
|
|||||||
def select_spriter(minNbSprites = 10, save_in_var = 1)
|
def select_spriter(minNbSprites = 10, save_in_var = 1)
|
||||||
spriters_list = list_all_spriters_with_min_nb_of_sprites(minNbSprites)
|
spriters_list = list_all_spriters_with_min_nb_of_sprites(minNbSprites)
|
||||||
commands = []
|
commands = []
|
||||||
spriters_list.each { |name, i| commands.push([i, name, name]) }
|
spriters_list.each do |name, i|
|
||||||
|
if name
|
||||||
|
commands.push([i, name, name])
|
||||||
|
end
|
||||||
|
end
|
||||||
chosen = pbChooseList(commands, 0, nil, 1)
|
chosen = pbChooseList(commands, 0, nil, 1)
|
||||||
return nil if !chosen
|
return nil if !chosen
|
||||||
return chosen
|
return chosen
|
||||||
@@ -95,7 +99,9 @@ def list_all_spriters_with_min_nb_of_sprites(minNbSprites)
|
|||||||
|
|
||||||
File.readlines(filename).each do |line|
|
File.readlines(filename).each do |line|
|
||||||
name = line.strip.split(',')[1]
|
name = line.strip.split(',')[1]
|
||||||
spriters_hash[name] += 1
|
if name
|
||||||
|
spriters_hash[name] += 1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
spriters_list = []
|
spriters_list = []
|
||||||
|
|||||||
Reference in New Issue
Block a user