mirror of
https://github.com/magefree/mage.git
synced 2026-01-23 19:59:54 -08:00
Update update-set-implementation-lists.yml
This commit is contained in:
parent
7c6bbe34e6
commit
9687cc8e58
1 changed files with 2 additions and 2 deletions
|
|
@ -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`);
|
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)) {
|
if (fs.existsSync(cardPath)) {
|
||||||
implemented.push({
|
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],
|
name: cardData[0],
|
||||||
cleanName: cleanCardName,
|
cleanName: cleanCardName,
|
||||||
scryfall: `https://scryfall.com/search?q=!"${cleanCardName}"+e:${set[1]}`
|
scryfall: `https://scryfall.com/search?q=!"${cleanCardName}"+e:${set[1]}`
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
unimplemented.push({
|
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],
|
name: cardData[0],
|
||||||
cleanName: cleanCardName,
|
cleanName: cleanCardName,
|
||||||
scryfall: `https://scryfall.com/search?q=!"${cleanCardName}"+e:${set[1]}`
|
scryfall: `https://scryfall.com/search?q=!"${cleanCardName}"+e:${set[1]}`
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue