mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
78 lines
947 B
TypeScript
78 lines
947 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Forbidden Light'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Fennekin",
|
||
fr: "Feunnec",
|
||
es: "Fennekin",
|
||
it: "Fennekin",
|
||
pt: "Fennekin",
|
||
de: "Fynx"
|
||
},
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
653,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
],
|
||
name: {
|
||
en: "Live Coal",
|
||
fr: "Charbon Mutant",
|
||
es: "Carbón Activado",
|
||
it: "Carboni Ardenti",
|
||
pt: "Carvão Vivo",
|
||
de: "Glühende Kohlen"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Rear Kick",
|
||
fr: "Ruade",
|
||
es: "Patada Trasera",
|
||
it: "Retrocalcio",
|
||
pt: "Chute Traseiro",
|
||
de: "Rückwärtskick"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|