mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-09 14:14:59 +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:
@@ -900,7 +900,8 @@ end
|
||||
def pbTraverseWaterfall
|
||||
if $game_player.direction == 2 # Facing down; descending
|
||||
terrain = $game_player.pbTerrainTag
|
||||
if !terrain.waterfall && !terrain.waterfall_crest
|
||||
if ($DEBUG && Input.press?(Input::CTRL)) ||
|
||||
(!terrain.waterfall && !terrain.waterfall_crest)
|
||||
$PokemonGlobal.descending_waterfall = false
|
||||
$game_player.through = false
|
||||
return
|
||||
@@ -910,7 +911,8 @@ def pbTraverseWaterfall
|
||||
$game_player.through = true
|
||||
elsif $PokemonGlobal.ascending_waterfall
|
||||
terrain = $game_player.pbTerrainTag
|
||||
if !terrain.waterfall && !terrain.waterfall_crest
|
||||
if ($DEBUG && Input.press?(Input::CTRL)) ||
|
||||
(!terrain.waterfall && !terrain.waterfall_crest)
|
||||
$PokemonGlobal.ascending_waterfall = false
|
||||
$game_player.through = false
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user