1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 23:52:11 +00:00

67 lines
849 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Team Magma vs Team Aqua'
const card: Card = {
name: {
en: "Jirachi",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
385,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Hypnoblast",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Swift",
},
effect: {
en: "This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies or any other effects on the Defending Pokémon.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card