1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

72 lines
784 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 3'
const card: Card = {
name: {
en: "Combusken",
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
256,
],
hp: 70,
types: [
"Fire",
],
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Flamethrower",
},
effect: {
en: "Discard a Fire Energy attached to Combusken.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Water"
},
],
retreat: 1,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card