1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 16:19:54 +00:00

63 lines
841 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Galarian Meowth",
},
illustrator: "Misa Tsutsui",
rarity: "Common",
category: "Pokemon",
set: Set,
abilities: [
{
type: "Ability",
name: {
en: "Evolution Roar",
},
effect: {
en: "You must discard 2 cards from your hand in order to use this Ability. Once during your turn, you may search your deck for a Galarian Perrserker, reveal it, and put it into your hand. Then, shuffle your deck.",
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Scratch",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 2,
}
export default card