1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

80 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Lost Thunder'
const card: Card = {
name: {
en: "Gardevoir",
fr: "Gardevoir",
},
illustrator: "Ryota Murayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
282,
],
hp: 130,
types: [
"Fairy",
],
evolveFrom: {
en: "Kirlia",
fr: "Kirlia",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fairy",
],
name: {
en: "Brilliant Search",
fr: "Recherche Brillante",
},
effect: {
en: "Search your deck for up to 3 cards and put them into your hand. Then, shuffle your deck.",
fr: "Cherchez jusquà 3 cartes dans votre deck et ajoutez-les à votre main. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Fairy",
"Colorless",
"Colorless",
],
name: {
en: "Sensitive Ray",
fr: "Rayon Sensible",
},
effect: {
en: "If you played a Supporter card from your hand during this turn, this attack does 90 more damage.",
fr: "Si vous avez joué une carte Supporter de votre main pendant ce tour, cette attaque inflige 90 dégâts supplémentaires.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 2,
}
export default card