mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
Adds date, game mode and difficulty to HoF screen + minor fixes
This commit is contained in:
@@ -46,8 +46,10 @@ class PokeBattle_Scene
|
||||
#hidden ability animation
|
||||
if @battle.battlers[idxBattler].hasHiddenAbility?
|
||||
pbCommonAnimation("StatUp",@battle.battlers[idxBattler])
|
||||
@battle.pbShowAbilitySplash(@battle.battlers[idxBattler],true)
|
||||
@battle.pbHideAbilitySplash(@battle.battlers[idxBattler])
|
||||
if @battle.is_a?(PokeBattle_Battle)
|
||||
@battle.pbShowAbilitySplash(@battle.battlers[idxBattler],true)
|
||||
@battle.pbHideAbilitySplash(@battle.battlers[idxBattler])
|
||||
end
|
||||
end
|
||||
|
||||
#shiny animation
|
||||
|
||||
@@ -46,6 +46,10 @@ class PokeBattle_FakeBattler
|
||||
return $Trainer.owned?(pokemon.species)
|
||||
end
|
||||
|
||||
def hasHiddenAbility?
|
||||
return @pokemon.hasHiddenAbility?
|
||||
end
|
||||
|
||||
def pbThis(lowerCase=false)
|
||||
return (lowerCase) ? _INTL("the wild {1}",name) : _INTL("The wild {1}",name)
|
||||
end
|
||||
@@ -351,6 +355,7 @@ class PokeBattle_SafariZone
|
||||
return @sideSizes[index%2]
|
||||
end
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Trainers and owner-related
|
||||
#=============================================================================
|
||||
|
||||
Reference in New Issue
Block a user