1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-25 13:29:18 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/040.ts
2025-01-30 23:03:12 +01:00

40 lines
518 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",
evolveFrom: {
en: "Growlithe"
},
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