mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
68
data/XY/Generations/RC13.ts
Normal file
68
data/XY/Generations/RC13.ts
Normal file
@ -0,0 +1,68 @@
|
||||
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
|
Reference in New Issue
Block a user