1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02: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

46 lines
599 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",
evolveFrom: {
en: "Growlithe"
},
suffix: "EX",
attacks: [{
cost: ["Fire", "Fire", "Colorless"],
name: {
en: "Inferno Onrush"
},
effect: {
en: "This Pokémon also does 20 damage to itself."
},
damage: "120"
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 2,
rarity: "Four Diamond"
}
export default card