mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
81 lines
1.5 KiB
TypeScript
81 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Secret Wonders'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Charmeleon",
|
|
fr: "Reptincel",
|
|
de: "Glutexo"
|
|
},
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
5,
|
|
],
|
|
hp: 80,
|
|
types: [
|
|
"Fire",
|
|
],
|
|
evolveFrom: {
|
|
en: "Charmander",
|
|
fr: "Salamèche",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
],
|
|
name: {
|
|
en: "Fire Fang",
|
|
fr: "Crocs Feu",
|
|
de: "Feuerzahn"
|
|
},
|
|
effect: {
|
|
en: "The Defending Pokémon is now Burned.",
|
|
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
|
|
de: "Das Verteidigende Pokémon ist jetzt verbrannt."
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Fire",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Flare Tail",
|
|
fr: "Queue flamboyante",
|
|
de: "Fackelschweif"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, discard a Fire Energy attached to Charmeleon and this attack does 50 damage plus 20 more damage.",
|
|
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie Fire attachée à Reptincel et cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" lege eine -Energie, die an Glutexo angelegt ist, auf deinen Ablagestapel und dieser Angriff fügt 50 Schadenspunkte plus 20 weitere Schadenspunkte zu."
|
|
},
|
|
damage: "50+",
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|