1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +00:00
TCGdex [Bot] 0475848425
editor: fix Scarlet & Violet variants (#508)
Co-authored-by: Avior <git@avior.me>
2024-07-03 15:53:00 +02:00

47 lines
631 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Scarlet & Violet"
const card: Card = {
dexId: [396],
set: Set,
name: {
en: "Starly",
fr: "Étourmi",
es: "Starly",
it: "Starly",
pt: "Starly",
de: "Staralili"
},
rarity: "Illustration rare",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Flap",
fr: "Battement",
es: "Aleteo",
it: "Alabattito",
pt: "Asa",
de: "Flattern"
},
damage: 20
}],
retreat: 1,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card