mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
Eusine give back stolen pokemon in goldenrod
This commit is contained in:
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.
@@ -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.0"
|
GAME_VERSION_NUMBER = "5.3.0.5"
|
||||||
|
|
||||||
POKERADAR_LIGHT_ANIMATION_RED_ID = 17
|
POKERADAR_LIGHT_ANIMATION_RED_ID = 17
|
||||||
POKERADAR_LIGHT_ANIMATION_GREEN_ID = 18
|
POKERADAR_LIGHT_ANIMATION_GREEN_ID = 18
|
||||||
|
|||||||
@@ -1674,7 +1674,7 @@ class PokemonStorageScreen
|
|||||||
commands[cmdFuse = commands.length] = _INTL("Fuse") if !@heldpkmn
|
commands[cmdFuse = commands.length] = _INTL("Fuse") if !@heldpkmn
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
commands[cmdNickname = commands.length] = _INTL("Nickname")
|
commands[cmdNickname = commands.length] = _INTL("Nickname") if !@heldpkmn
|
||||||
commands[cmdWithdraw = commands.length] = (selected[0] == -1) ? _INTL("Store") : _INTL("Withdraw")
|
commands[cmdWithdraw = commands.length] = (selected[0] == -1) ? _INTL("Store") : _INTL("Withdraw")
|
||||||
commands[cmdItem = commands.length] = _INTL("Item")
|
commands[cmdItem = commands.length] = _INTL("Item")
|
||||||
|
|
||||||
|
|||||||
@@ -303,7 +303,9 @@ end
|
|||||||
|
|
||||||
def tryRandomizeGiftPokemon(pokemon, dontRandomize = false)
|
def tryRandomizeGiftPokemon(pokemon, dontRandomize = false)
|
||||||
if $game_switches[SWITCH_RANDOM_GIFT_POKEMON] && $game_switches[SWITCH_RANDOM_WILD] && !dontRandomize
|
if $game_switches[SWITCH_RANDOM_GIFT_POKEMON] && $game_switches[SWITCH_RANDOM_WILD] && !dontRandomize
|
||||||
oldSpecies = dexNum(pokemon.species)
|
oldSpecies = pokemon.is_a?(Pokemon) ? dexNum(pokemon) : dexNum(pokemon.species)
|
||||||
|
if $PokemonGlobal.psuedoBSTHash[oldSpecies]
|
||||||
pokemon.species = getSpecies($PokemonGlobal.psuedoBSTHash[oldSpecies])
|
pokemon.species = getSpecies($PokemonGlobal.psuedoBSTHash[oldSpecies])
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
@@ -36,15 +36,15 @@ class ExperimentalOptionsScene < PokemonOption_Scene
|
|||||||
proc { |value|
|
proc { |value|
|
||||||
$game_switches[SWITCH_NO_LEVELS_MODE] = value == 0
|
$game_switches[SWITCH_NO_LEVELS_MODE] = value == 0
|
||||||
}, "All Pokémon use their base stats, regardless of levels."
|
}, "All Pokémon use their base stats, regardless of levels."
|
||||||
),
|
)#,
|
||||||
EnumOption.new(_INTL("Double abilities"), [_INTL("On"), _INTL("Off")],
|
# EnumOption.new(_INTL("Double abilities"), [_INTL("On"), _INTL("Off")],
|
||||||
proc {
|
# proc {
|
||||||
$game_switches[SWITCH_DOUBLE_ABILITIES] ? 0 : 1
|
# $game_switches[SWITCH_DOUBLE_ABILITIES] ? 0 : 1
|
||||||
},
|
# },
|
||||||
proc { |value|
|
# proc { |value|
|
||||||
$game_switches[SWITCH_DOUBLE_ABILITIES] = value == 0
|
# $game_switches[SWITCH_DOUBLE_ABILITIES] = value == 0
|
||||||
}, "Fused Pokémon have two abilities at the same time"
|
# }, "Fused Pokémon have two abilities at the same time"
|
||||||
)
|
#)
|
||||||
|
|
||||||
]
|
]
|
||||||
return options
|
return options
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user