1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +00:00

73 lines
1.1 KiB
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 '../Ancient Origins'
const card: Card = {
name: {
en: "Flareon",
fr: "Pyroli",
},
illustrator: "sui",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
136,
],
hp: 90,
types: [
"Fire",
],
evolveFrom: {
en: "Eevee",
fr: "Évoli",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Flare Effect",
fr: "Effet Flamboyant",
},
effect: {
en: "Each of your Stage 1 Pokémon in play is now a Fire Pokémon in addition to its existing types.",
fr: "Chacun de vos Pokémon de Niveau 1 en jeu est maintenant un Pokémon Fire en plus de ses types existants.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Heat Breath",
fr: "Souffle Ardent",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card