removes triple fusion types from pokedex search screen

This commit is contained in:
infinitefusion
2023-11-24 10:47:42 -05:00
parent 0433e49477
commit e1c52d9546
2 changed files with 6 additions and 1 deletions

View File

@@ -1038,7 +1038,12 @@ class PokemonPokedex_Scene
_INTL("U"),_INTL("V"),_INTL("W"),_INTL("X"),_INTL("Y"),
_INTL("Z")]
@typeCommands = []
GameData::Type.each { |t| @typeCommands.push(t) if !t.pseudo_type }
count = 0
GameData::Type.each do |t|
@typeCommands.push(t) if !t.pseudo_type && count <= 18
count +=1
end
@typeCommands.sort! { |a, b| a.id_number <=> b.id_number }
@heightCommands = [1,2,3,4,5,6,7,8,9,10,
11,12,13,14,15,16,17,18,19,20,

Binary file not shown.