blob: cf687c719582735f2fd4db5e17ea99a9d9644eaf (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
$allMonsters = [];
foreach (scandir(__DIR__ . '/modules/tuxemon/mods/tuxemon/db/monster') as $file) {
if (in_array($file, ['.', '..'])) continue;
$allMonsters[] = pathinfo($file, PATHINFO_FILENAME);
}
file_put_contents(__DIR__ . '/db/all-monsters.json', json_encode($allMonsters));
|