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

@@ -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