mirror of
https://github.com/CajunAvenger/cajunavenger.github.io.git
synced 2026-03-21 17:34:16 -05:00
add Ranger, Rumble to Surplus Starter, Remakes to Silly
* Fix Fairy Arceus missing in gen 6 * Silly Mode adds Vaporeon, Jolteon, and Flareon to XD Eevee slots * Starter hover text now shows the game * Close #175
This commit is contained in:
parent
1d160942e9
commit
8cc4db1fa8
1
dex_mini.js
Normal file
1
dex_mini.js
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -480,6 +480,7 @@ canvas {
|
|||
});
|
||||
</script>
|
||||
-->
|
||||
<script src="dex_mini.js"></script>
|
||||
<script src="pokemon_arrays.js"></script>
|
||||
<script src="translate.js"></script>
|
||||
<script language="JavaScript">
|
||||
|
|
@ -829,6 +830,11 @@ canvas {
|
|||
mon_key = "BLANK";
|
||||
tooltip = "Deselect " + tooltip;
|
||||
}
|
||||
else if(currently_selecting[1] == 19) {
|
||||
let game = starterGame(mon_key, currently_selecting[0]);
|
||||
if(game != "")
|
||||
tooltip += " (" + game + ")";
|
||||
}
|
||||
var mon_img = domlink + spriteFile + "/" + mon_key + ".png"
|
||||
var ele = document.getElementById('preview'+pr_ind);
|
||||
if(!ele) {
|
||||
|
|
|
|||
5
minify.js
Normal file
5
minify.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
var fs = require('fs');
|
||||
var dex = require('./dex.json');
|
||||
|
||||
fs.writeFile('./dex_mini.js', 'var pokedex = ' + JSON.stringify(dex), () => {})
|
||||
|
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user