mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
57 lines
694 B
TypeScript
57 lines
694 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Gym Heroes'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Blaine's Moltres",
|
|
},
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Rare Holo",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
146,
|
|
],
|
|
hp: 90,
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Fire",
|
|
"Fire",
|
|
"Fire",
|
|
"Fire",
|
|
],
|
|
name: {
|
|
en: "Phoenix Flame",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If tails, shuffle Blaine's Moltres and all cards attached to it into your deck (after doing damage).",
|
|
},
|
|
damage: 90,
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|