mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-10 03:59:18 +00:00
47 lines
671 B
TypeScript
47 lines
671 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Destined Rivals"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Taillow",
|
|
fr: "Nirondelle",
|
|
de: "Schwalbini",
|
|
it: "Taillow",
|
|
es: "Taillow",
|
|
pt: "Taillow",
|
|
'es-mx': "Taillow"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Wing Attack",
|
|
fr: "Cru-Ailes",
|
|
de: "Flügelschlag",
|
|
it: "Attacco d'Ala",
|
|
es: "Ataque Ala",
|
|
pt: "Ataque de Asa",
|
|
'es-mx': "Ataque de Ala"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "I",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |