mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
48 lines
666 B
TypeScript
48 lines
666 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
dexId: [661],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Fletchling",
|
|
fr: "Passerouge",
|
|
es: "Fletchling",
|
|
it: "Fletchling",
|
|
pt: "Fletchling",
|
|
de: "Dartiri"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 40,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Peck",
|
|
fr: "Picpic",
|
|
es: "Picotazo",
|
|
it: "Beccata",
|
|
pt: "Bicada",
|
|
de: "Pikser"
|
|
},
|
|
|
|
damage: 10
|
|
}],
|
|
|
|
retreat: 0,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |