1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

103 lines
1.7 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 '../Darkness Ablaze'
const card: Card = {
dexId: [256],
name: {
en: "Combusken",
fr: "Galifeu",
es: "Combusken",
it: "Combusken",
pt: "Combusken",
de: "Jungglut"
},
illustrator: "kodama",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 90,
types: [
"Fire",
],
evolveFrom: {
en: "Torchic",
fr: "Poussifeu",
es: "Torchic",
it: "Torchic",
pt: "Torchic",
de: "Flemmli"
},
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Smash Kick",
fr: "Coud'Pattes",
es: "Patada Destrucción",
it: "Calcio Esplosivo",
pt: "Chute Poderoso",
de: "Schmetterkick"
},
damage: 20,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Heat Beak",
fr: "Bec Thermique",
es: "Pico Ígneo",
it: "Becco Infuocato",
pt: "Bico de Calor",
de: "Hitzeschnabel"
},
effect: {
en: "Your opponent's Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "During a battle, the hot flame in its body increases. Its kicks have outstanding destructive power."
}
}
export default card