mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
47 lines
682 B
TypeScript
47 lines
682 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
dexId: [17],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Roucoups",
|
|
en: "Pidgeotto",
|
|
es: "Pidgeotto",
|
|
it: "Pidgeotto",
|
|
pt: "Pidgeotto",
|
|
de: "Tauboga"
|
|
},
|
|
|
|
rarity: "Illustration rare",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Colorless"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Cru-Ailes",
|
|
en: "Wing Attack",
|
|
es: "Ataque Ala",
|
|
it: "Attacco d'Ala",
|
|
pt: "Ataque de Asa",
|
|
de: "Flügelschlag"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
reverse: false,
|
|
normal: false
|
|
}
|
|
}
|
|
|
|
export default card |