mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
40 lines
531 B
TypeScript
40 lines
531 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Centiskorch"
|
|
},
|
|
|
|
illustrator: "GOSSAN",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Fire"],
|
|
stage: "Stage1",
|
|
evolveFrom: {
|
|
en: "Sizzlipede"
|
|
},
|
|
|
|
|
|
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: "Two Diamond"
|
|
}
|
|
|
|
export default card
|