1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00

37 lines
503 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Arcanine ex"
},
illustrator: "PLANETA Saito",
category: "Pokemon",
hp: 150,
types: ["Fire"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Fire", "Fire", "Colorless"],
name: {
en: "Inferno Onrush"
},
effect: {
en: "This Pokémon also does 20 damage to itself."
},
damage: "120"
}],
retreat: 2,
rarity: "Two Star"
}
export default card