Removes autogen dex entries

This commit is contained in:
infinitefusion
2024-12-24 09:30:02 -05:00
parent 17ca4dcd69
commit 0a59474542
6 changed files with 18 additions and 17 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -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 = '6.4.1' GAME_VERSION = '6.4.2'
GAME_VERSION_NUMBER = "6.4.1" GAME_VERSION_NUMBER = "6.4.2"
LATEST_GAME_RELEASE = "6.4" LATEST_GAME_RELEASE = "6.4"
POKERADAR_LIGHT_ANIMATION_RED_ID = 17 POKERADAR_LIGHT_ANIMATION_RED_ID = 17

View File

@@ -375,7 +375,7 @@ class PokemonPokedexInfo_Scene
entryText = customEntry entryText = customEntry
shadowColor = shadowCustom shadowColor = shadowCustom
else else
if $PokemonSystem.use_generated_dex_entries if false#$PokemonSystem.use_generated_dex_entries
aiEntry = getAIDexEntry(species_data.species, species_data.name) aiEntry = getAIDexEntry(species_data.species, species_data.name)
if aiEntry if aiEntry
entryText = aiEntry entryText = aiEntry
@@ -385,7 +385,8 @@ class PokemonPokedexInfo_Scene
shadowColor = shadow shadowColor = shadow
end end
else else
entryText = "No custom Pokédex entry available for this Pokémon. Auto-generated placeholder entries can be enabled in the game's options." entryText = "No custom Pokédex entry available for this Pokémon. Due to community backlash, auto-generated Pokédex entries are no longer available."
#entryText = "No custom Pokédex entry available for this Pokémon. Auto-generated placeholder entries can be enabled in the game's options."
shadowColor = shadow shadowColor = shadow
end end
end end

View File

@@ -110,19 +110,19 @@ class PokemonGameOption_Scene < PokemonOption_Scene
}, },
"Automatically download missing custom sprites and Pokédex entries from the internet" "Automatically download missing custom sprites and Pokédex entries from the internet"
) )
#
generated_entries_option_selected=$PokemonSystem.use_generated_dex_entries ? 1 : 0 # generated_entries_option_selected=$PokemonSystem.use_generated_dex_entries ? 1 : 0
options << EnumOption.new(_INTL("Autogen dex entries"), [_INTL("Off"), _INTL("On")], # options << EnumOption.new(_INTL("Autogen dex entries"), [_INTL("Off"), _INTL("On")],
proc { generated_entries_option_selected }, # proc { generated_entries_option_selected },
proc { |value| # proc { |value|
$PokemonSystem.use_generated_dex_entries = value == 1 # $PokemonSystem.use_generated_dex_entries = value == 1
}, # },
[ # [
"Fusions without a custom Pokédex entry display nothing.", # "Fusions without a custom Pokédex entry display nothing.",
"Fusions without a custom Pokédex entry display an auto-generated placeholder." # "Fusions without a custom Pokédex entry display an auto-generated placeholder."
#
] # ]
) # )
if $game_switches && ($game_switches[SWITCH_NEW_GAME_PLUS] || $game_switches[SWITCH_BEAT_THE_LEAGUE]) #beat the league if $game_switches && ($game_switches[SWITCH_NEW_GAME_PLUS] || $game_switches[SWITCH_BEAT_THE_LEAGUE]) #beat the league
options << options <<

Binary file not shown.