1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
2021-11-12 17:24:19 +01:00

74 lines
1.3 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 '../Neo Genesis'
const card: Card = {
name: {
en: "Cyndaquil",
fr: "Héricendre"
},
illustrator: "Shin-ichi Yoshida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
155,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Fireworks",
fr: "Feu d'artifice"
},
effect: {
en: "Flip a coin. If tails, discard 1 Energy card attached to Cyndaquil.",
fr: "Lancez une pièce. Si c'est pile, défaussez 1 carte Énergie attachée à Héricendre."
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Quick Attack",
fr: "Vive-attaque"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires ; si c'est pile, cette attaque inflige 10 points dégâts."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
description: {
fr: "Il est timide et se roule toujours en boule. Quand on l'attaque, il enflamme son dos pour se protéger."
}
}
export default card