mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
67 lines
867 B
TypeScript
67 lines
867 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Legendary Collection'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Moltres",
|
|
},
|
|
illustrator: "Mitsuhiro Arita",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
146,
|
|
],
|
|
hp: 70,
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
],
|
|
name: {
|
|
en: "Wildfire",
|
|
},
|
|
effect: {
|
|
en: "You may discard any number of R Energy cards attached to Moltres when you use this attack. If you do, discard that many cards from the top of your opponent's deck.",
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Fire",
|
|
"Fire",
|
|
"Fire",
|
|
],
|
|
name: {
|
|
en: "Dive Bomb",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If tails, this attack does nothing.",
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|