Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UICONS #13

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
48 changes: 48 additions & 0 deletions UICONS/create.index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php

$thisFolder = dirname(__FILE__) . DIRECTORY_SEPARATOR;
/* Create master json file */
file_put_contents('index.json', json_encode(dirtree($thisFolder)));
/* Create subfolder json files */
foreach (dirtree($thisFolder) as $k => $dir) {
if (is_dir($thisFolder . $k)) {
$jsonFile = $thisFolder . $k . DIRECTORY_SEPARATOR . 'index.json';
$directory = dirtree($thisFolder . $k);
file_put_contents($jsonFile, json_encode($directory));
}
if ($k === 'reward') {
foreach ($dir as $ks => $subdir) {
if (is_dir($thisFolder . $k . DIRECTORY_SEPARATOR . $ks)) {
$jsonFile = $thisFolder . $k . DIRECTORY_SEPARATOR . $ks . DIRECTORY_SEPARATOR . 'index.json';
$directory = dirtree($thisFolder . $k . DIRECTORY_SEPARATOR . $ks);
file_put_contents($jsonFile, json_encode($directory));
}
}
}
}

function dirtree($dir, $ignoreEmpty=false) {
if (!$dir instanceof DirectoryIterator) {
$dir = new DirectoryIterator((string)$dir);
}
$dirs = array();
$files = array();
foreach ($dir as $node) {
if ($node->isDir() && !$node->isDot()) {
$tree = dirtree($node->getPathname(), $ignoreEmpty);
if (!$ignoreEmpty || count($tree)) {
$dirs[$node->getFilename()] = $tree;
}
} elseif ($node->isFile()) {
$name = $node->getFilename();
if (!str_ends_with($name, '.json') && !str_ends_with($name, '.php')) {
$files[] = $name;
}
}
}
asort($dirs);
sort($files);

return array_merge($dirs, $files);
}

Binary file added UICONS/gym/beasts/gym/0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/1_t1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/1_t2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/1_t3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/1_t4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/1_t5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/1_t6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/2_t1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/2_t2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/2_t3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/2_t4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/2_t5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/2_t6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/3_t1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/3_t2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/3_t3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/3_t4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/3_t5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/3_t6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/beasts/gym/Harmony.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/classic/gym/0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/classic/gym/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added UICONS/gym/classic/gym/1_t1.png
Binary file added UICONS/gym/classic/gym/1_t2.png
Binary file added UICONS/gym/classic/gym/1_t3.png
Binary file added UICONS/gym/classic/gym/1_t4.png
Binary file added UICONS/gym/classic/gym/1_t5.png
Binary file added UICONS/gym/classic/gym/1_t6.png
Binary file added UICONS/gym/classic/gym/2.png
Binary file added UICONS/gym/classic/gym/2_t1.png
Binary file added UICONS/gym/classic/gym/2_t2.png
Binary file added UICONS/gym/classic/gym/2_t3.png
Binary file added UICONS/gym/classic/gym/2_t4.png
Binary file added UICONS/gym/classic/gym/2_t5.png
Binary file added UICONS/gym/classic/gym/2_t6.png
Binary file added UICONS/gym/classic/gym/3.png
Binary file added UICONS/gym/classic/gym/3_t1.png
Binary file added UICONS/gym/classic/gym/3_t2.png
Binary file added UICONS/gym/classic/gym/3_t3.png
Binary file added UICONS/gym/classic/gym/3_t4.png
Binary file added UICONS/gym/classic/gym/3_t5.png
Binary file added UICONS/gym/classic/gym/3_t6.png
Binary file added UICONS/gym/classic/gym/Harmony.png
Binary file added UICONS/gym/comictower/gym/0.png
Binary file added UICONS/gym/comictower/gym/1.png
Binary file added UICONS/gym/comictower/gym/1_t1.png
Binary file added UICONS/gym/comictower/gym/1_t2.png
Binary file added UICONS/gym/comictower/gym/1_t3.png
Binary file added UICONS/gym/comictower/gym/1_t4.png
Binary file added UICONS/gym/comictower/gym/1_t5.png
Binary file added UICONS/gym/comictower/gym/1_t6.png
Binary file added UICONS/gym/comictower/gym/2.png
Binary file added UICONS/gym/comictower/gym/2_t1.png
Binary file added UICONS/gym/comictower/gym/2_t2.png
Binary file added UICONS/gym/comictower/gym/2_t3.png
Binary file added UICONS/gym/comictower/gym/2_t4.png
Binary file added UICONS/gym/comictower/gym/2_t5.png
Binary file added UICONS/gym/comictower/gym/2_t6.png
Binary file added UICONS/gym/comictower/gym/3.png
Binary file added UICONS/gym/comictower/gym/3_t1.png
Binary file added UICONS/gym/comictower/gym/3_t2.png
Binary file added UICONS/gym/comictower/gym/3_t3.png
Binary file added UICONS/gym/comictower/gym/3_t4.png
Binary file added UICONS/gym/comictower/gym/3_t5.png
Binary file added UICONS/gym/comictower/gym/3_t6.png
Binary file added UICONS/gym/comictower/gym/Harmony.png
Binary file added UICONS/gym/elements/gym/0.png
Binary file added UICONS/gym/elements/gym/1.png
Binary file added UICONS/gym/elements/gym/1_t1.png
Binary file added UICONS/gym/elements/gym/1_t2.png
Binary file added UICONS/gym/elements/gym/1_t3.png
Binary file added UICONS/gym/elements/gym/1_t4.png
Binary file added UICONS/gym/elements/gym/1_t5.png
Binary file added UICONS/gym/elements/gym/1_t6.png
Binary file added UICONS/gym/elements/gym/2.png
Binary file added UICONS/gym/elements/gym/2_t1.png
Binary file added UICONS/gym/elements/gym/2_t2.png
Binary file added UICONS/gym/elements/gym/2_t3.png
Binary file added UICONS/gym/elements/gym/2_t4.png
Binary file added UICONS/gym/elements/gym/2_t5.png
Binary file added UICONS/gym/elements/gym/2_t6.png
Binary file added UICONS/gym/elements/gym/3.png
Binary file added UICONS/gym/elements/gym/3_t1.png
Binary file added UICONS/gym/elements/gym/3_t2.png
Binary file added UICONS/gym/elements/gym/3_t3.png
Binary file added UICONS/gym/elements/gym/3_t4.png
Binary file added UICONS/gym/elements/gym/3_t5.png
Binary file added UICONS/gym/elements/gym/3_t6.png
Binary file added UICONS/gym/elements/gym/Harmony.png
Binary file added UICONS/gym/idol/gym/0.png
Binary file added UICONS/gym/idol/gym/1.png
Binary file added UICONS/gym/idol/gym/1_t1.png
Binary file added UICONS/gym/idol/gym/1_t2.png
Binary file added UICONS/gym/idol/gym/1_t3.png
Binary file added UICONS/gym/idol/gym/1_t4.png
Binary file added UICONS/gym/idol/gym/1_t5.png
Binary file added UICONS/gym/idol/gym/1_t6.png
Binary file added UICONS/gym/idol/gym/2.png
Binary file added UICONS/gym/idol/gym/2_t1.png
Binary file added UICONS/gym/idol/gym/2_t2.png
Binary file added UICONS/gym/idol/gym/2_t3.png
Binary file added UICONS/gym/idol/gym/2_t4.png
Binary file added UICONS/gym/idol/gym/2_t5.png
Binary file added UICONS/gym/idol/gym/2_t6.png
Binary file added UICONS/gym/idol/gym/3.png
Binary file added UICONS/gym/idol/gym/3_t1.png
Binary file added UICONS/gym/idol/gym/3_t2.png
Binary file added UICONS/gym/idol/gym/3_t3.png
Binary file added UICONS/gym/idol/gym/3_t4.png
Binary file added UICONS/gym/idol/gym/3_t5.png
Binary file added UICONS/gym/idol/gym/3_t6.png
Binary file added UICONS/gym/idol/gym/Harmony.png
1 change: 1 addition & 0 deletions UICONS/gym/index.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"idol":{"gym":["0.png","1.png","1_t1.png","1_t2.png","1_t3.png","1_t4.png","1_t5.png","1_t6.png","2.png","2_t1.png","2_t2.png","2_t3.png","2_t4.png","2_t5.png","2_t6.png","3.png","3_t1.png","3_t2.png","3_t3.png","3_t4.png","3_t5.png","3_t6.png","Harmony.png"]},"shield":{"gym":["0.png","1.png","1_t1.png","1_t2.png","1_t3.png","1_t4.png","1_t5.png","1_t6.png","2.png","2_t1.png","2_t2.png","2_t3.png","2_t4.png","2_t5.png","2_t6.png","3.png","3_t1.png","3_t2.png","3_t3.png","3_t4.png","3_t5.png","3_t6.png","Harmony.png"]},"ingame":{"gym":["0.png","1.png","1_t1.png","1_t2.png","1_t3.png","1_t4.png","1_t5.png","1_t6.png","2.png","2_t1.png","2_t2.png","2_t3.png","2_t4.png","2_t5.png","2_t6.png","3.png","3_t1.png","3_t2.png","3_t3.png","3_t4.png","3_t5.png","3_t6.png","Harmony.png"]},"elements":{"gym":["0.png","1.png","1_t1.png","1_t2.png","1_t3.png","1_t4.png","1_t5.png","1_t6.png","2.png","2_t1.png","2_t2.png","2_t3.png","2_t4.png","2_t5.png","2_t6.png","3.png","3_t1.png","3_t2.png","3_t3.png","3_t4.png","3_t5.png","3_t6.png","Harmony.png"]},"beasts":{"gym":["0.png","1.png","1_t1.png","1_t2.png","1_t3.png","1_t4.png","1_t5.png","1_t6.png","2.png","2_t1.png","2_t2.png","2_t3.png","2_t4.png","2_t5.png","2_t6.png","3.png","3_t1.png","3_t2.png","3_t3.png","3_t4.png","3_t5.png","3_t6.png","Harmony.png"]},"tower":{"gym":["0.png","1.png","1_t1.png","1_t2.png","1_t3.png","1_t4.png","1_t5.png","1_t6.png","2.png","2_t1.png","2_t2.png","2_t3.png","2_t4.png","2_t5.png","2_t6.png","3.png","3_t1.png","3_t2.png","3_t3.png","3_t4.png","3_t5.png","3_t6.png","Harmony.png"]},"classic":{"gym":["0.png","1.png","1_t1.png","1_t2.png","1_t3.png","1_t4.png","1_t5.png","1_t6.png","2.png","2_t1.png","2_t2.png","2_t3.png","2_t4.png","2_t5.png","2_t6.png","3.png","3_t1.png","3_t2.png","3_t3.png","3_t4.png","3_t5.png","3_t6.png","Harmony.png"]},"comictower":{"gym":["0.png","1.png","1_t1.png","1_t2.png","1_t3.png","1_t4.png","1_t5.png","1_t6.png","2.png","2_t1.png","2_t2.png","2_t3.png","2_t4.png","2_t5.png","2_t6.png","3.png","3_t1.png","3_t2.png","3_t3.png","3_t4.png","3_t5.png","3_t6.png","Harmony.png"]},"label":{"gym":["0.png","1.png","2.png","3.png","Harmony_normal.png"],"old":["Harmony_normal.png","Harmony_raw.png","Instinct_normal.png","Instinct_raw.png","Mystic_normal.png","Mystic_raw.png","Uncontested_normal.png","Valor_normal.png","Valor_raw.png","uncontested_raw.png"],"0":"Harmony_raw.png","1":"Instinct_raw.png","2":"Mystic_raw.png","3":"Valor_raw.png","4":"all.psd","5":"uncontested_raw.png"}}
Binary file added UICONS/gym/ingame/gym/0.png
Binary file added UICONS/gym/ingame/gym/1.png
Binary file added UICONS/gym/ingame/gym/1_t1.png
Binary file added UICONS/gym/ingame/gym/1_t2.png
Binary file added UICONS/gym/ingame/gym/1_t3.png
Binary file added UICONS/gym/ingame/gym/1_t4.png
Binary file added UICONS/gym/ingame/gym/1_t5.png
Binary file added UICONS/gym/ingame/gym/1_t6.png
Binary file added UICONS/gym/ingame/gym/2.png
Binary file added UICONS/gym/ingame/gym/2_t1.png
Binary file added UICONS/gym/ingame/gym/2_t2.png
Binary file added UICONS/gym/ingame/gym/2_t3.png
Binary file added UICONS/gym/ingame/gym/2_t4.png
Binary file added UICONS/gym/ingame/gym/2_t5.png
Binary file added UICONS/gym/ingame/gym/2_t6.png
Binary file added UICONS/gym/ingame/gym/3.png
Binary file added UICONS/gym/ingame/gym/3_t1.png
Binary file added UICONS/gym/ingame/gym/3_t2.png
Binary file added UICONS/gym/ingame/gym/3_t3.png
Binary file added UICONS/gym/ingame/gym/3_t4.png
Binary file added UICONS/gym/ingame/gym/3_t5.png
Binary file added UICONS/gym/ingame/gym/3_t6.png
Binary file added UICONS/gym/ingame/gym/Harmony.png
Binary file added UICONS/gym/label/Harmony_raw.png
Binary file added UICONS/gym/label/Instinct_raw.png
Binary file added UICONS/gym/label/Mystic_raw.png
Binary file added UICONS/gym/label/Valor_raw.png
Binary file added UICONS/gym/label/all.psd
Diff not rendered.
Binary file added UICONS/gym/label/gym/0.png
Binary file added UICONS/gym/label/gym/1.png
Binary file added UICONS/gym/label/gym/2.png
Binary file added UICONS/gym/label/gym/3.png
Binary file added UICONS/gym/label/gym/Harmony_normal.png
Binary file added UICONS/gym/label/old/Harmony_normal.png
Binary file added UICONS/gym/label/old/Harmony_raw.png
Binary file added UICONS/gym/label/old/Instinct_normal.png
Binary file added UICONS/gym/label/old/Instinct_raw.png
Binary file added UICONS/gym/label/old/Mystic_normal.png
Binary file added UICONS/gym/label/old/Mystic_raw.png
Binary file added UICONS/gym/label/old/Uncontested_normal.png
Binary file added UICONS/gym/label/old/Valor_normal.png
Binary file added UICONS/gym/label/old/Valor_raw.png
Binary file added UICONS/gym/label/old/uncontested_raw.png
Binary file added UICONS/gym/label/uncontested_raw.png
Binary file added UICONS/gym/shield/gym/0.png
Binary file added UICONS/gym/shield/gym/1.png
Binary file added UICONS/gym/shield/gym/1_t1.png
Binary file added UICONS/gym/shield/gym/1_t2.png
Binary file added UICONS/gym/shield/gym/1_t3.png
Binary file added UICONS/gym/shield/gym/1_t4.png
Binary file added UICONS/gym/shield/gym/1_t5.png
Binary file added UICONS/gym/shield/gym/1_t6.png
Binary file added UICONS/gym/shield/gym/2.png
Binary file added UICONS/gym/shield/gym/2_t1.png
Binary file added UICONS/gym/shield/gym/2_t2.png
Binary file added UICONS/gym/shield/gym/2_t3.png
Binary file added UICONS/gym/shield/gym/2_t4.png
Binary file added UICONS/gym/shield/gym/2_t5.png
Binary file added UICONS/gym/shield/gym/2_t6.png
Binary file added UICONS/gym/shield/gym/3.png
Binary file added UICONS/gym/shield/gym/3_t1.png
Binary file added UICONS/gym/shield/gym/3_t2.png
Binary file added UICONS/gym/shield/gym/3_t3.png
Binary file added UICONS/gym/shield/gym/3_t4.png
Binary file added UICONS/gym/shield/gym/3_t5.png
Binary file added UICONS/gym/shield/gym/3_t6.png
Binary file added UICONS/gym/shield/gym/Harmony.png
Binary file added UICONS/gym/tower/gym/0.png
Binary file added UICONS/gym/tower/gym/1.png
Binary file added UICONS/gym/tower/gym/1_t1.png
Binary file added UICONS/gym/tower/gym/1_t2.png
Binary file added UICONS/gym/tower/gym/1_t3.png
Binary file added UICONS/gym/tower/gym/1_t4.png
Binary file added UICONS/gym/tower/gym/1_t5.png
Binary file added UICONS/gym/tower/gym/1_t6.png
Binary file added UICONS/gym/tower/gym/2.png
Binary file added UICONS/gym/tower/gym/2_t1.png
Binary file added UICONS/gym/tower/gym/2_t2.png
Binary file added UICONS/gym/tower/gym/2_t3.png
Binary file added UICONS/gym/tower/gym/2_t4.png
Binary file added UICONS/gym/tower/gym/2_t5.png
Binary file added UICONS/gym/tower/gym/2_t6.png
Binary file added UICONS/gym/tower/gym/3.png
Binary file added UICONS/gym/tower/gym/3_t1.png
Binary file added UICONS/gym/tower/gym/3_t2.png
Binary file added UICONS/gym/tower/gym/3_t3.png
Binary file added UICONS/gym/tower/gym/3_t4.png
Binary file added UICONS/gym/tower/gym/3_t5.png
Binary file added UICONS/gym/tower/gym/3_t6.png
Binary file added UICONS/gym/tower/gym/Harmony.png
1 change: 1 addition & 0 deletions UICONS/index.json

Large diffs are not rendered by default.

Binary file added UICONS/invasion/1.png
Binary file added UICONS/invasion/10.png
Binary file added UICONS/invasion/11.png
Binary file added UICONS/invasion/12.png
Binary file added UICONS/invasion/13.png
Binary file added UICONS/invasion/14.png
Binary file added UICONS/invasion/15.png
Binary file added UICONS/invasion/16.png
Binary file added UICONS/invasion/17.png
Binary file added UICONS/invasion/18.png
Binary file added UICONS/invasion/19.png
Binary file added UICONS/invasion/2.png
Binary file added UICONS/invasion/20.png
Binary file added UICONS/invasion/21.png
Binary file added UICONS/invasion/22.png
Binary file added UICONS/invasion/23.png
Binary file added UICONS/invasion/24.png
Binary file added UICONS/invasion/25.png
Binary file added UICONS/invasion/26.png
Binary file added UICONS/invasion/27.png
Binary file added UICONS/invasion/28.png
Binary file added UICONS/invasion/29.png
Binary file added UICONS/invasion/3.png
Binary file added UICONS/invasion/30.png
Binary file added UICONS/invasion/31.png
Binary file added UICONS/invasion/32.png
Binary file added UICONS/invasion/33.png
Binary file added UICONS/invasion/34.png
Binary file added UICONS/invasion/35.png
Binary file added UICONS/invasion/36.png
Binary file added UICONS/invasion/37.png
Binary file added UICONS/invasion/38.png
Binary file added UICONS/invasion/39.png
Binary file added UICONS/invasion/4.png
Binary file added UICONS/invasion/40.png
Binary file added UICONS/invasion/41.png
Binary file added UICONS/invasion/42.png
Binary file added UICONS/invasion/43.png
Binary file added UICONS/invasion/44.png
Binary file added UICONS/invasion/47.png
Binary file added UICONS/invasion/48.png
Binary file added UICONS/invasion/49.png
Binary file added UICONS/invasion/5.png
Binary file added UICONS/invasion/50.png
Binary file added UICONS/invasion/6.png
Binary file added UICONS/invasion/7.png
Binary file added UICONS/invasion/8.png
Binary file added UICONS/invasion/9.png
1 change: 1 addition & 0 deletions UICONS/invasion/index.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
["1.png","10.png","11.png","12.png","13.png","14.png","15.png","16.png","17.png","18.png","19.png","2.png","20.png","21.png","22.png","23.png","24.png","25.png","26.png","27.png","28.png","29.png","3.png","30.png","31.png","32.png","33.png","34.png","35.png","36.png","37.png","38.png","39.png","4.png","40.png","41.png","42.png","43.png","44.png","47.png","48.png","49.png","5.png","50.png","6.png","7.png","8.png","9.png"]
Binary file added UICONS/misc/LureModule.png
Binary file added UICONS/misc/LureModule_501.png
Binary file added UICONS/misc/LureModule_502.png
Binary file added UICONS/misc/LureModule_503.png
Binary file added UICONS/misc/LureModule_504.png
1 change: 1 addition & 0 deletions UICONS/misc/index.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
["LureModule.png","LureModule_501.png","LureModule_502.png","LureModule_503.png","LureModule_504.png","rocket-invasion.png"]
Binary file added UICONS/misc/rocket-invasion.png
Binary file added UICONS/pokemon/1.png
Binary file added UICONS/pokemon/10.png
Binary file added UICONS/pokemon/100.png
Binary file added UICONS/pokemon/101.png
Binary file added UICONS/pokemon/102.png
Binary file added UICONS/pokemon/102_f729.png
Binary file added UICONS/pokemon/102_f730.png
Binary file added UICONS/pokemon/103.png
Binary file added UICONS/pokemon/103_f732.png
Binary file added UICONS/pokemon/103_f77.png
Binary file added UICONS/pokemon/103_f78.png
Binary file added UICONS/pokemon/104.png
Binary file added UICONS/pokemon/104_f224.png
Binary file added UICONS/pokemon/104_f225.png
Binary file added UICONS/pokemon/105.png
Binary file added UICONS/pokemon/105_f227.png
Binary file added UICONS/pokemon/105_f79.png
Binary file added UICONS/pokemon/105_f80.png
Binary file added UICONS/pokemon/106.png
Binary file added UICONS/pokemon/106_f713.png
Binary file added UICONS/pokemon/106_f714.png
Binary file added UICONS/pokemon/107.png
Binary file added UICONS/pokemon/107_f277.png
Binary file added UICONS/pokemon/107_f278.png
Binary file added UICONS/pokemon/108.png
Binary file added UICONS/pokemon/109.png
Binary file added UICONS/pokemon/109_f703.png
Binary file added UICONS/pokemon/109_f704.png
Binary file added UICONS/pokemon/11.png
Binary file added UICONS/pokemon/110.png
Binary file added UICONS/pokemon/110_f706.png
Binary file added UICONS/pokemon/110_f707.png
Binary file added UICONS/pokemon/110_f944.png
Binary file added UICONS/pokemon/111.png
Binary file added UICONS/pokemon/111_f846.png
Binary file added UICONS/pokemon/111_f847.png
Loading