1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

57 lines
689 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Gym Heroes'
const card: Card = {
name: {
en: "Blaine's Moltres",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
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