1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 12:09:53 +00:00

34 lines
460 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Centiskorch"
},
category: "Pokemon",
hp: 130,
types: ["Fire"],
stage: "Stage1",
attacks: [{
cost: ["Fire", "Colorless", "Colorless", "Colorless"],
name: {
en: "Fire Blast"
},
effect: {
en: "Discard a R Energy from this Pokémon."
},
damage: "130"
}],
retreat: 3,
rarity: "None"
}
export default card