diff --git a/README.md b/README.md index 8562d03..c6c347c 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,6 @@ This tool can build the data necessary to flash new games to a [Nintendo Power G - Pokemon GB Font: https://www.fontspace.com/pokemon-gb-font-f9621 - Nokia Cellphone FC Font: https://www.dafont.com/nokia-cellphone.font - NP GBメモリ (DMG-MMSA) Font - - This is an attempt at reproducing the original font used on the GB Memory cartridge. Since the font is not stored in the rom, "Lesserkuma" has been working to recreate the font by studying cartridge dumps. The font started life as the one used in the JP Game Boy game "Kaeru no Tame ni Kane wa Naru", and has been tweaked to closly resemble the original GB Memory font! Special thanks to "Lesserkuma" for their hard work! + - This is an attempt at reproducing the original font used on the GB Memory cartridge. Since the font is not stored in the rom, [Lesserkuma](https://github.com/lesserkuma) has been working to recreate the font by studying cartridge dumps. The font started life as the one used in the JP Game Boy game "Kaeru no Tame ni Kane wa Naru", and has been tweaked to closly resemble the original GB Memory font! Special thanks to Lesserkuma for their hard work! +- TWL-IRAJ-1 Font + - A font with support for narrow alphanumeric characters as well as Japanese characters including most Kanji. Suitable for long game titles. Based on a font used in Pokémon Black and White, this font was also created by [Lesserkuma](https://github.com/lesserkuma). diff --git a/font/DMG-MMSA.woff b/font/DMG-MMSA.woff index 2496a00..d9c917a 100644 Binary files a/font/DMG-MMSA.woff and b/font/DMG-MMSA.woff differ diff --git a/font/TWL-IRAJ-1.woff b/font/TWL-IRAJ-1.woff new file mode 100644 index 0000000..cb923fa Binary files /dev/null and b/font/TWL-IRAJ-1.woff differ diff --git a/index.html b/index.html index 146d5da..f4d2418 100644 --- a/index.html +++ b/index.html @@ -130,16 +130,19 @@ Menu Font: - + - + - + - + + + +
diff --git a/script/gbnp.js b/script/gbnp.js index 3aa8f3f..c75d6d0 100644 --- a/script/gbnp.js +++ b/script/gbnp.js @@ -18,6 +18,7 @@ const FONTS = [ { style: 'normal 8px PokemonGB', y: 7 }, { style: 'normal 8px Nokia', y: 7 }, { style: 'normal 8px DMG-MMSA', y: 7 }, + { style: 'normal 8px TWL-IRAJ-1', y: 7 }, ]; const MENU_TITLE_CHECK = 'NP M-MENU'; diff --git a/style/style.css b/style/style.css index d0b9c0b..30692e5 100644 --- a/style/style.css +++ b/style/style.css @@ -26,6 +26,13 @@ font-style: normal; } +@font-face { + font-family: "TWL-IRAJ-1"; + src: url("../font/TWL-IRAJ-1.woff") format("woff"); + font-weight: normal; + font-style: normal; +} + html { font-family: sans-serif; line-height: 1.4; @@ -181,6 +188,10 @@ label#gbmem { text-transform: uppercase; } +label#twliraj1 { + font-family: 'TWL-IRAJ-1'; +} + noscript { font-weight: bold; color: red;