mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
36 lines
476 B
TypeScript
36 lines
476 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Flareon"
|
|
},
|
|
|
|
illustrator: "sui",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Fire"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fire", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Flamethrower"
|
|
},
|
|
|
|
effect: {
|
|
en: "Discard 1 R Energy from this Pokémon."
|
|
},
|
|
|
|
damage: "110"
|
|
}],
|
|
|
|
retreat: 2,
|
|
rarity: "Three Diamond"
|
|
}
|
|
|
|
export default card
|