1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/087.ts

44 lines
697 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Girafarig"
},
illustrator: "Miki Tanaka",
rarity: "One Diamond",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
en: "Girafarig's tail has a small head. It instinctively\nbites at any foe that approaches the Pokémon\nfrom behind."
},
stage: "Basic",
attacks: [{
name: {
en: "Psybeam"
},
damage: 50,
cost: ["Psychic", "Colorless", "Colorless"],
effect: {
en: "Your opponent's Active Pokémon is now Confused."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 1
}
export default card