mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-08 05:34:58 +00:00
Moved Poké Radar encounters into encounters.txt, added Setting/map metadata for reflection rippling, fixed def minimum_level, fixed ice/waterfalls forcing movement even when holding Ctrl in Debug mode, Pokédex no longer shows genders for species without gender differences
This commit is contained in:
@@ -549,11 +549,13 @@ end
|
||||
# Player/event movement in the field
|
||||
#===============================================================================
|
||||
def pbSlideOnIce
|
||||
if $game_player.pbTerrainTag.ice && $game_player.can_move_in_direction?($game_player.direction)
|
||||
$PokemonGlobal.ice_sliding = true
|
||||
$game_player.straighten
|
||||
$game_player.walk_anime = false
|
||||
return
|
||||
if !$DEBUG || !Input.press?(Input::CTRL)
|
||||
if $game_player.pbTerrainTag.ice && $game_player.can_move_in_direction?($game_player.direction)
|
||||
$PokemonGlobal.ice_sliding = true
|
||||
$game_player.straighten
|
||||
$game_player.walk_anime = false
|
||||
return
|
||||
end
|
||||
end
|
||||
$PokemonGlobal.ice_sliding = false
|
||||
$game_player.walk_anime = true
|
||||
|
||||
Reference in New Issue
Block a user