1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00
TCGdex [Bot] 5b32edb5bf
editor: fix Paldean Fates variants (#514)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:49 +02:00

47 lines
631 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
dexId: [17],
set: Set,
name: {
en: "Pidgeotto",
fr: "Roucoups",
es: "Pidgeotto",
it: "Pidgeotto",
pt: "Pidgeotto",
de: "Tauboga"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
en: "Flap",
fr: "Battement",
es: "Aleteo",
it: "Alabattito",
pt: "Asa",
de: "Flattern"
},
damage: 20
}],
retreat: 0,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card