diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-08-15 15:10:04 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-08-15 15:10:04 +0200 |
commit | 0007e50506ebaa61554bfd11e98581dada7e0cdd (patch) | |
tree | cf0064a7a165c602fb89ffa15993b3db69cef751 /db/all-monsters.php | |
parent | 8ab8988d01199f64151c532c59ff6c08735d4e37 (diff) |
animations!!
Diffstat (limited to 'db/all-monsters.php')
-rw-r--r-- | db/all-monsters.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/db/all-monsters.php b/db/all-monsters.php new file mode 100644 index 0000000..3907fec --- /dev/null +++ b/db/all-monsters.php @@ -0,0 +1,10 @@ +<?php + +$allMonsters = []; +foreach (scandir(dirname(__DIR__) . '/modules/tuxemon/mods/tuxemon/db/monster') as $file) { + if (in_array($file, ['.', '..'])) continue; + + $allMonsters[] = pathinfo($file, PATHINFO_FILENAME); +} + +file_put_contents(__DIR__ . '/all-monsters.json', json_encode($allMonsters)); |