1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 20:09:55 +00:00

44 lines
631 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Arcanine"
},
illustrator: "match",
rarity: "Two Diamond",
category: "Pokemon",
hp: 130,
types: ["Fire"],
evolveFrom: {
en: "Growlithe"
},
description: {
en: "An ancient picture scroll shows that people were captivated by its movement as it ran through prairies."
},
stage: "Stage1",
attacks: [{
name: {
en: "Fire Mane"
},
damage: 80,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 3
}
export default card