1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00

65 lines
887 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 Obstagoon",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 170,
types: [
"Darkness",
],
evolveFrom: {
en: "Galarian Linoone",
},
abilities: [
{
type: "Ability",
name: {
en: "Wicked Ruler",
},
effect: {
en: "Once during your turn, you may have your opponent discard cards from their hand until they have 4 cards in their hand.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Knuckle Impact",
},
effect: {
en: "During your next turn, this Pokémon cant attack.",
},
damage: 180,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card