Added def GameData::Species.base_stat_total, other minor code tweaks

This commit is contained in:
Maruno17
2022-06-09 21:06:35 +01:00
parent cb2f33d8f6
commit 248b0dd882
4 changed files with 13 additions and 9 deletions

View File

@@ -95,7 +95,7 @@ def pbStartOver(gameover = false)
pbMessage(_INTL("\\w[]\\wm\\c[8]\\l[3]You scurry back to a Pokémon Center, protecting your exhausted Pokémon from any further harm..."))
end
pbCancelVehicles
pbRemoveDependencies
Followers.clear
$game_switches[Settings::STARTING_OVER_SWITCH] = true
$game_temp.player_new_map_id = $PokemonGlobal.pokecenterMapId
$game_temp.player_new_x = $PokemonGlobal.pokecenterX
@@ -120,7 +120,7 @@ def pbStartOver(gameover = false)
end
if homedata
pbCancelVehicles
pbRemoveDependencies
Followers.clear
$game_switches[Settings::STARTING_OVER_SWITCH] = true
$game_temp.player_new_map_id = homedata[0]
$game_temp.player_new_x = homedata[1]

View File

@@ -50,7 +50,7 @@ module RandomDungeonGenerator
TEXT_SYMBOLS = {
VOID => "#",
ROOM => " ",
WALL => "-",
WALL => "=",
CORRIDOR => "."
}
@@ -61,7 +61,7 @@ module RandomDungeonGenerator
end
def to_text(value)
return TEXT_SYMBOLS[value] || TEXT_SYMBOLS[VOID]
return TEXT_SYMBOLS[value] || "\e[30m\e[41m?\e[0m"
end
end