mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-03 20:39:55 +00:00
44 lines
652 B
TypeScript
44 lines
652 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Talonflame"
|
|
},
|
|
|
|
illustrator: "Masakazu Fukuda",
|
|
rarity: "Three Diamond",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Fire"],
|
|
|
|
evolveFrom: {
|
|
en: "Fletchinder"
|
|
},
|
|
|
|
description: {
|
|
en: "It has top-notch flying capabilities. It flies around easily, even while carrying prey that weighs more than 220 lbs."
|
|
},
|
|
|
|
stage: "Stage2",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Fire Wing"
|
|
},
|
|
|
|
damage: 90,
|
|
cost: ["Fire", "Fire"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |