summaryrefslogtreecommitdiff
path: root/all-monsters.php
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-08-15 15:10:04 +0200
committerDaniel Weipert <code@drogueronin.de>2023-08-15 15:10:04 +0200
commit0007e50506ebaa61554bfd11e98581dada7e0cdd (patch)
treecf0064a7a165c602fb89ffa15993b3db69cef751 /all-monsters.php
parent8ab8988d01199f64151c532c59ff6c08735d4e37 (diff)
animations!!
Diffstat (limited to 'all-monsters.php')
-rw-r--r--all-monsters.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/all-monsters.php b/all-monsters.php
deleted file mode 100644
index cf687c7..0000000
--- a/all-monsters.php
+++ /dev/null
@@ -1,10 +0,0 @@
-<?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));