mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
69 lines
694 B
TypeScript
69 lines
694 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 5'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Charmander δ",
|
|
},
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
4,
|
|
],
|
|
|
|
hp: 50,
|
|
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Scratch",
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Bite",
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Water"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|