1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/040.ts
2025-02-19 21:52:42 +01:00

49 lines
706 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"
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 2,
rarity: "Three Diamond",
description: {
en: "An ancient picture scroll shows that people were captivated by its movement as it ran through prairies.",
}
}
export default card