mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
69 lines
823 B
TypeScript
69 lines
823 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Mysterious Treasures'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Cyndaquil",
|
|
fr: "Héricendre",
|
|
de: "Feurigel"
|
|
},
|
|
|
|
illustrator: "Masakazu Fukuda",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
155,
|
|
],
|
|
|
|
hp: 60,
|
|
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Tackle",
|
|
fr: "Charge",
|
|
de: "Tackle"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Live Coal",
|
|
fr: "Charbon mutant",
|
|
de: "Glühende Kohlen"
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Ce Pokémon est un grand timide. Les flammes sur son dos s'intensifient lorsqu'il prend peur."
|
|
}
|
|
}
|
|
|
|
export default card
|