1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

78 lines
922 B
TypeScript
Raw Permalink 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 '../Kalos Starter Set'
const card: Card = {
name: {
en: "Fennekin",
fr: "Feunnec",
es: "Fennekin",
it: "Fennekin",
pt: "Fennekin",
de: "Fynx"
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
653,
],
hp: 60,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Scratch",
fr: "Griffe",
es: "Arañazo",
it: "Graffio",
pt: "Arranhão",
de: "Kratzer"
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Live Coal",
fr: "Charbon Mutant",
es: "Carbón Activado",
it: "Carboni Ardenti",
pt: "Carvão Vivo",
de: "Glühende Kohlen"
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card