mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
90 lines
1.2 KiB
TypeScript
90 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Undaunted'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Flareon",
|
||
fr: "Pyroli",
|
||
de: "Flamara"
|
||
},
|
||
|
||
illustrator: "kawayoo",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
136,
|
||
],
|
||
|
||
hp: 90,
|
||
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Eevee",
|
||
fr: "Evoli",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Flame Tail",
|
||
fr: "Queue de flammes",
|
||
de: "Flammenschweif"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Flamethrower",
|
||
fr: "Lance-flamme",
|
||
de: "Flammenwurf"
|
||
},
|
||
effect: {
|
||
en: "Discard an Energy attached to Flareon.",
|
||
fr: "Défaussez une carte Énergie attachée à Pyroli.",
|
||
de: "Lege 1 an Flamara angelegte Energie auf deinen Ablagestapel."
|
||
},
|
||
damage: 90,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "It stores some of the air it inhales in its internal flame pouch, which heats it to over 3,000 degrees Fahrenheit."
|
||
},
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|