1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

74 lines
978 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 '../Jungle'
const card: Card = {
name: {
en: "Persian",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
53,
],
hp: 70,
types: [
"Colorless",
],
evolveFrom: {
en: "Meowth",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Scratch",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Pounce",
},
effect: {
en: "If the Defending Pokémon attacks Persian during your opponent's next turn, any damage done by the attack is reduce by 10 (after applying Weakness and Resistance). (Benching either Pokémon ends this effect.)",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card