1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

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