mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
36 lines
480 B
TypeScript
36 lines
480 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Arcanine"
|
|
},
|
|
|
|
illustrator: "kodama",
|
|
category: "Pokemon",
|
|
hp: 150,
|
|
types: ["Fire"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Fire", "Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "Heat Tackle"
|
|
},
|
|
|
|
effect: {
|
|
en: "This Pokémon also does 20 damage to itself."
|
|
},
|
|
|
|
damage: "100"
|
|
}],
|
|
|
|
retreat: 2,
|
|
rarity: "Three Diamond"
|
|
}
|
|
|
|
export default card
|