This commit is contained in:
chardub
2025-02-24 11:52:54 -05:00
4 changed files with 7 additions and 9 deletions

View File

@@ -30,7 +30,7 @@ class PokeBattle_Battler
end
def pbRecoverHPFromDrain(amt,target,msg=nil)
if target.hasActiveAbility?(:LIQUIDOOZE)
if target.hasActiveAbility?(:LIQUIDOOZE, true)
@battle.pbShowAbilitySplash(target)
pbReduceHP(amt)
@battle.pbDisplay(_INTL("{1} sucked up the liquid ooze!",pbThis))

View File

@@ -396,13 +396,11 @@ class PokeBattle_Move_019 < PokeBattle_Move
failed = false
break
end
if !failed
@battle.pbParty(user.index).each do |pkmn|
next if !pkmn || !pkmn.able? || pkmn.status == :NONE
failed = false
break
end
end
if failed
@battle.pbDisplay(_INTL("But it failed!"))
return true

View File

@@ -2376,9 +2376,9 @@ class PokemonStorageScreen
end
if Kernel.pbConfirmMessageSerious(_INTL("Should {1} be reversed?", pokemon.name))
reverseFusion(pokemon)
end
$PokemonBag.pbDeleteItem(:DNAREVERSER) if $PokemonBag.pbQuantity(:INFINITEREVERSERS) <= 0
end
end
def pbUnfuseFromPC(selected)
box = selected[0]

View File

@@ -387,7 +387,7 @@ module GameData
["Ray", "quaza"],
["Ji", "rachi"],
["Deo", "xys"],
["Tur", "wig"],
["Tur", "twig"],
["Gro", "tle"],
["Tor", "terra"],
["Chim", "char"],