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