mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-08 13:44:59 +00:00
Fixed Focus Band only triggering at full HP, made more text translatable
This commit is contained in:
@@ -571,7 +571,6 @@ class Window_AdvancedTextPokemon < SpriteWindow_Base
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# TODO: Why is this called 4 times per loop in pbMessageDisplay?
|
|
||||||
def update
|
def update
|
||||||
super
|
super
|
||||||
@pausesprite.update if @pausesprite&.visible
|
@pausesprite.update if @pausesprite&.visible
|
||||||
|
|||||||
@@ -785,17 +785,17 @@ class Battle
|
|||||||
when :HarshSun
|
when :HarshSun
|
||||||
if !pbCheckGlobalAbility(:DESOLATELAND)
|
if !pbCheckGlobalAbility(:DESOLATELAND)
|
||||||
@field.weather = :None
|
@field.weather = :None
|
||||||
pbDisplay("The harsh sunlight faded!")
|
pbDisplay(_INTL("The harsh sunlight faded!"))
|
||||||
end
|
end
|
||||||
when :HeavyRain
|
when :HeavyRain
|
||||||
if !pbCheckGlobalAbility(:PRIMORDIALSEA)
|
if !pbCheckGlobalAbility(:PRIMORDIALSEA)
|
||||||
@field.weather = :None
|
@field.weather = :None
|
||||||
pbDisplay("The heavy rain has lifted!")
|
pbDisplay(_INTL("The heavy rain has lifted!"))
|
||||||
end
|
end
|
||||||
when :StrongWinds
|
when :StrongWinds
|
||||||
if !pbCheckGlobalAbility(:DELTASTREAM)
|
if !pbCheckGlobalAbility(:DELTASTREAM)
|
||||||
@field.weather = :None
|
@field.weather = :None
|
||||||
pbDisplay("The mysterious air current has dissipated!")
|
pbDisplay(_INTL("The mysterious air current has dissipated!"))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if @field.weather != oldWeather
|
if @field.weather != oldWeather
|
||||||
|
|||||||
@@ -209,8 +209,7 @@ class Battle::Move
|
|||||||
elsif target.effects[PBEffects::Endure]
|
elsif target.effects[PBEffects::Endure]
|
||||||
target.damageState.endured = true
|
target.damageState.endured = true
|
||||||
damage -= 1
|
damage -= 1
|
||||||
elsif damage == target.totalhp
|
elsif target.hasActiveAbility?(:STURDY) && !target.beingMoldBroken? && target.hp == target.totalhp
|
||||||
if target.hasActiveAbility?(:STURDY) && !target.beingMoldBroken?
|
|
||||||
target.damageState.sturdy = true
|
target.damageState.sturdy = true
|
||||||
damage -= 1
|
damage -= 1
|
||||||
elsif target.hasActiveItem?(:FOCUSSASH) && target.hp == target.totalhp
|
elsif target.hasActiveItem?(:FOCUSSASH) && target.hp == target.totalhp
|
||||||
@@ -228,7 +227,6 @@ class Battle::Move
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
damage = 0 if damage < 0
|
damage = 0 if damage < 0
|
||||||
target.damageState.hpLost = damage
|
target.damageState.hpLost = damage
|
||||||
target.damageState.totalHPLost += damage
|
target.damageState.totalHPLost += damage
|
||||||
|
|||||||
Reference in New Issue
Block a user