mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: add Celestial Guardians (#716)
This commit is contained in:
44
data/Pokémon TCG Pocket/Celestial Guardians/028.ts
Normal file
44
data/Pokémon TCG Pocket/Celestial Guardians/028.ts
Normal file
@ -0,0 +1,44 @@
|
||||
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
|
Reference in New Issue
Block a user