This commit is contained in:
skysthelimitt 2023-10-31 20:16:33 -04:00
parent 8bd6b08c63
commit e76375f5aa
27 changed files with 339 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -42,6 +42,9 @@ Licensed under the MIT License (view LICENSE.md for more information)
<meta property="twitter:title" content="GBA Online">
<meta property="twitter:description" content="A free, online, and lightweight GameBoy Advance emulator.">
<meta property="twitter:image" content="https://raw.githubusercontent.com/ayvacs/gba.js.org/gh-pages/assets/repo-card.png">
<script>
alert("gba is being phased out, please find the specific game in the games list. if the game is not there, then make a suggestion")
</script>
</head>
<body>

BIN
pokemon/arrow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 613 B

BIN
pokemon/blue/blue.gb Normal file

Binary file not shown.

23
pokemon/blue/index.html Normal file
View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "sapphire.gba";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

BIN
pokemon/crystal/crystal.gbc Normal file

Binary file not shown.

View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "sapphire.gba";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

BIN
pokemon/emerald/emerald.gba Normal file

Binary file not shown.

View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "emerald.gba";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

BIN
pokemon/firered/firered.gba Normal file

Binary file not shown.

View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "firered.gba";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

BIN
pokemon/font.ttf Normal file

Binary file not shown.

BIN
pokemon/gold/gold.gbc Normal file

Binary file not shown.

23
pokemon/gold/index.html Normal file
View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "sapphire.gba";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

82
pokemon/index.html Normal file
View File

@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokemon</title>
<style>
@font-face {
font-family: pokemon;
src: url(font.ttf);
}
body {
background-color: lightblue;
user-select: none;
}
ul {
list-style-type: none;
padding: 0;
font-family:pokemon, Arial, Helvetica, sans-serif;
display: table;
margin: 0 auto;
background-color: white;
}
a {
color: black;
text-decoration: none;
}
li {
font-size: 30px;
margin: 10px;
padding-left: 50px;
}
li:hover {
background-image: url(arrow.png);
background-repeat: no-repeat;
background-size: contain;
image-rendering: pixelated;
}
.pixel-borders {
padding: 15px 20px;
background-color: #fff;
}
.pixel-borders--2 {
border-style: solid;
border-width: 4px;
border-color: #5697cc;
border-image-slice: 4;
border-image-width: 2;
border-image-outset: 0;
border-image-source: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12'><path d='M2 2h2v2H2zM4 0h2v2H4zM10 4h2v2h-2zM0 4h2v2H0zM6 0h2v2H6zM8 2h2v2H8zM8 8h2v2H8zM6 10h2v2H6zM0 6h2v2H0zM10 6h2v2h-2zM4 10h2v2H4zM2 8h2v2H2z' fill='%233c5aa6' /></svg>");
}
@supports (border-image-source: none) {
.pixel-borders--2 {
border-radius: 20px;
}
}
</style>
</head>
<body>
<ul class="pixel-borders pixel-borders--2">
<a href="blue/index.html"><li>Blue</li></a>
<a href="crystal/index.html"><li>Crystal</li></a>
<a href="emerald/index.html"><li>Emerald</li></a>
<a href="firered/index.html"><li>FireRed</li></a>
<a href="gold/index.html"><li>Gold</li></a>
<a href="leafgreen/index.html"><li>LeafGreen</li></a>
<a href="red/index.html"><li>Red</li></a>
<a href="ruby/index.html"><li>Ruby</li></a>
<a href="sapphire/index.html"><li>Sapphire</li></a>
<a href="silver/index.html"><li>Silver</li></a>
<a href="yellow/index.html"><li>Yellow</li></a>
</ul>
</body>
</html>

View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "leafgreen.gba";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

Binary file not shown.

23
pokemon/red/index.html Normal file
View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "sapphire.gba";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

BIN
pokemon/red/red.gb Normal file

Binary file not shown.

23
pokemon/ruby/index.html Normal file
View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "ruby.gba";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

BIN
pokemon/ruby/ruby.gba Normal file

Binary file not shown.

View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "sapphire.gba";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

Binary file not shown.

23
pokemon/silver/index.html Normal file
View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "silver.gbc";
EJS_core = 'gba';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

BIN
pokemon/silver/silver.gbc Normal file

Binary file not shown.

23
pokemon/yellow/index.html Normal file
View File

@ -0,0 +1,23 @@
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div style="width:100%;height:100%;max-width:100%">
<div id="game"></div>
</div>
<script>
EJS_player = "#game";
EJS_core = "CORE_NAME";
EJS_pathtodata = "/emulatorjs/data/";
EJS_gameUrl = "yellow.gb";
EJS_core = 'gb';
</script>
<script src="/emulatorjs/data/loader.js"></script>
</body>
</html>

BIN
pokemon/yellow/yellow.gb Normal file

Binary file not shown.