mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
82 lines
1.2 KiB
TypeScript
82 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sandstorm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Flareon",
|
||
fr: "Pyroli",
|
||
de: "Flamara"
|
||
},
|
||
illustrator: "Midori Harada",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
136,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
evolveFrom: {
|
||
en: "Eevee",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Super Singe",
|
||
fr: "Ça sent le roussi!",
|
||
de: "Super Singe"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Burned.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Brûlé.",
|
||
de: "Flip a coin. If heads, the Defending Pokémon is now Burned."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Flamethrower",
|
||
fr: "Lance-flamme",
|
||
de: "Flamethrower"
|
||
},
|
||
effect: {
|
||
en: "Discard a Fire Energy card attached to Flareon.",
|
||
fr: "Défaussez une carte Énergie attachée à Pyroli.",
|
||
de: "Discard a Energy card attached to Flareon."
|
||
},
|
||
damage: 70,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|