1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

41 lines
565 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
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"
}
export default card