1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-24 08:59:55 +00:00

52 lines
738 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Galarian Cursola V",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
hp: 190,
types: [
"Psychic",
],
abilities: [
{
type: "Ability",
name: {
en: "Gnawing Aura",
},
effect: {
en: "As long as this Pokémon is in the Active Spot, whenever your opponent attaches an Energy card from their hand to 1 of their Pokémon, put 3 damage counters on that Pokémon.",
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
retreat: 2,
}
export default card