mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
69 lines
892 B
TypeScript
69 lines
892 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Generations'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Jirachi",
|
||
fr: "Jirachi",
|
||
},
|
||
illustrator: "kirisAki",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
385,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Wish",
|
||
fr: "Vœu",
|
||
},
|
||
effect: {
|
||
en: "Search your deck for a card and put it into your hand. Shuffle your deck afterward.",
|
||
fr: "Cherchez une carte dans votre deck puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Heart Sign",
|
||
fr: "Signe de Cœur",
|
||
},
|
||
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|