title screen

This commit is contained in:
infinitefusion
2021-07-02 21:48:03 -04:00
parent 500edeca7d
commit 8cae8fb8da
6 changed files with 675 additions and 0 deletions

View File

@@ -252,4 +252,15 @@ def isHoennPokemon(species)
341,342,355,356,357,378,379,380,381,382,385,386,387,390,
391,392,393,394,395,396,401,404,405]
return list.include?(species)
end
def pbBitmap(path)
if !pbResolveBitmap(path).nil?
bmp = RPG::Cache.load_bitmap_path(path)
bmp.storedPath = path
else
p "Image located at '#{path}' was not found!" if $DEBUG
bmp = Bitmap.new(1, 1)
end
return bmp
end