mirror of
https://github.com/orangeglo/gbnp.git
synced 2026-03-21 17:34:22 -05:00
Added the new TWL-IRAJ-1 font, updated the DMG-MMSA font
This commit is contained in:
parent
6eb8690c72
commit
7979a3d1a2
|
|
@ -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).
|
||||
|
|
|
|||
Binary file not shown.
BIN
font/TWL-IRAJ-1.woff
Normal file
BIN
font/TWL-IRAJ-1.woff
Normal file
Binary file not shown.
11
index.html
11
index.html
|
|
@ -130,16 +130,19 @@
|
|||
<span class="settings-label">Menu Font: </span>
|
||||
|
||||
<input type="radio" id="font0" name="font" value="0" v-model="fontIndex">
|
||||
<label for="font0" id="gameboy" class="radio-label">Game Boy</label>
|
||||
<label for="font0" id="gameboy" class="radio-label" title="By Jimmy Campbell">Game Boy</label>
|
||||
|
||||
<input type="radio" id="font1" name="font" value="1" v-model="fontIndex">
|
||||
<label for="font1" id="pokemon" class="radio-label">POKEMON</label>
|
||||
<label for="font1" id="pokemon" class="radio-label" title="By Jackster Productions">POKéMON</label>
|
||||
|
||||
<input type="radio" id="font2" name="font" value="2" v-model="fontIndex">
|
||||
<label for="font2" id="nokia" class="radio-label">Nokia</label>
|
||||
<label for="font2" id="nokia" class="radio-label" title="By Zeh Fernando">Nokia</label>
|
||||
|
||||
<input type="radio" id="font3" name="font" value="3" v-model="fontIndex">
|
||||
<label for="font3" id="gbmem" class="radio-label">NP GBメモリ</label>
|
||||
<label for="font3" id="gbmem" class="radio-label" title="By Lesserkuma">NP GBメモリ</label>
|
||||
|
||||
<input type="radio" id="font4" name="font" value="4" v-model="fontIndex">
|
||||
<label for="font4" id="twliraj1" class="radio-label" title="By Lesserkuma">TWL-IRAJ-1</label>
|
||||
</div>
|
||||
|
||||
<div class="settings-row">
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user