1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
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