Update update-set-implementation-lists.yml

This commit is contained in:
ExpensiveKoala 2023-06-24 01:17:56 -07:00 committed by GitHub
parent 7c6bbe34e6
commit 9687cc8e58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,14 +76,14 @@ jobs:
const cardPath = path.join('Mage.Sets', 'src', 'mage', 'cards', className.substring(0, 1), `${className.charAt(0).toUpperCase()+className.slice(1)}.java`);
if (fs.existsSync(cardPath)) {
implemented.push({
pr: false, //TODO: check to see if there is a PR for this card
pr: true, //TODO: check to see if there is a PR for this card
name: cardData[0],
cleanName: cleanCardName,
scryfall: `https://scryfall.com/search?q=!"${cleanCardName}"+e:${set[1]}`
});
} else {
unimplemented.push({
pr: true, //TODO: check to see if there is a PR for this card
pr: false, //TODO: check to see if there is a PR for this card
name: cardData[0],
cleanName: cleanCardName,
scryfall: `https://scryfall.com/search?q=!"${cleanCardName}"+e:${set[1]}`