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

76 lines
1.3 KiB
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 '../Power Keepers'
const card: Card = {
name: {
en: "Combusken",
fr: "Galifeu",
de: "Jungglut"
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
256,
],
hp: 80,
types: [
"Fire",
],
evolveFrom: {
en: "Torchic",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Natural Cure",
fr: "Medic Nature",
de: "Innere Kraft"
},
effect: {
en: "When you attach a Fire Energy card from your hand to Combusken, remove all Special Conditions from Combusken.",
fr: "Lorsque vous attachez une carte Énergie de votre main à Galifeu, retirez-lui tous ses États Spéciaux.",
de: "Wenn du eine -Energiekarte an Jungglut anlegst, verlieren alle Speziellen Zustände auf Jungglut ihre Wirkung."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Lunge",
fr: "Coup rapide",
de: "Ausfall"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet.",
de: "Wirf eine Münze. Bei \"Zahl\" hat dieser Angriff keine Auswirkungen."
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card