1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

42 lines
579 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"
}
export default card