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

72 lines
1.1 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: "Girafarig",
fr: "Girafarig",
},
illustrator: "Ayaka Yoshida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
203,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Get Lost",
fr: "Cest Perdu",
},
effect: {
en: "Put 2 cards from your opponent's discard pile in the Lost Zone.",
fr: "Placez 2 cartes de la pile de défausse de votre adversaire dans la Zone Perdue.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Mind Shock",
fr: "Choc Cérébral",
},
effect: {
en: "This attack's damage isn't affected by Weakness or Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card