1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 15:19:55 +00:00

44 lines
654 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Fletchinder"
},
illustrator: "Mina Nakai",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Fire"],
evolveFrom: {
en: "Fletchling"
},
description: {
en: "Fletchinder scatters embers in tall grass where bug Pokémon might be hiding and then catches them as they come leaping out."
},
stage: "Stage1",
attacks: [{
name: {
en: "Steady Firebreathing"
},
damage: 30,
cost: ["Fire"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card