first pass at smogdex xyicons/xyitems

This commit is contained in:
Christopher Monsanto 2020-09-01 06:01:38 -04:00
parent c21ea271f4
commit 3567fbbe04

View File

@ -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"});
}