mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
63 lines
804 B
TypeScript
63 lines
804 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Neo Genesis'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Girafarig",
|
|
},
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
203,
|
|
],
|
|
hp: 60,
|
|
types: [
|
|
"Psychic",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Agility",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Girafarig.",
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
"Psychic",
|
|
],
|
|
name: {
|
|
en: "Psybeam",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|