From 3567fbbe0499cda95db2d6d019fcd44421a6f77e Mon Sep 17 00:00:00 2001 From: Christopher Monsanto Date: Tue, 1 Sep 2020 06:01:38 -0400 Subject: [PATCH] first pass at smogdex xyicons/xyitems --- smogon.deploy.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/smogon.deploy.js b/smogon.deploy.js index 1b3d842b..c6d78039 100644 --- a/smogon.deploy.js +++ b/smogon.deploy.js @@ -42,14 +42,22 @@ function itemspritecopy(f, {dir, ext}) { copy(f, {dir, ext, name}); } -for (const f of list("build/gen6-minisprites-padded")) { - spritecopy(f, {dir: "forumsprites"}); +for (const f of list("newsrc/minisprites/pokemon/gen6")) { + spritecopy(f, {dir: "xyicons"}); +} + +for (const f of list("newsrc/minisprites/items")) { + itemspritecopy(f, {dir: "xyitems"}); } for (const f of list("build/item-minisprites-padded")) { itemspritecopy(f, {dir: "forumsprites"}); } +for (const f of list("build/gen6-minisprites-padded")) { + spritecopy(f, {dir: "forumsprites"}); +} + for (const f of list("build/smogon/fbsprites/xy")) { spritecopy(f, {dir: "fbsprites/xy"}); }