1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00

73 lines
869 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Undaunted'
const card: Card = {
name: {
en: "Flareon",
fr: "Pyroli",
},
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",
},
damage: 30,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Flamethrower",
fr: "Lance-flamme",
},
effect: {
en: "Discard an Energy attached to Flareon.",
fr: "Défaussez une carte Énergie attachée à Pyroli.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card