mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
77 lines
866 B
TypeScript
77 lines
866 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 5'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Charmeleon δ",
|
|
},
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
5,
|
|
],
|
|
|
|
hp: 70,
|
|
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Charmander",
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Slash",
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Thunder Jolt",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If tails, Charmeleon does 10 damage to itself.",
|
|
},
|
|
damage: 50,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Water"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|