1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

70 lines
1001 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Persian",
fr: "Persian",
},
illustrator: "nagimiso",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
53,
],
hp: 100,
types: [
"Colorless",
],
evolveFrom: {
en: "Meowth",
fr: "Miaouss",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Gathering of Cats",
fr: "Rassemblement de Chats",
},
effect: {
en: "Ignore all Energy in the attack costs of each of your Pokémon in play that has the Caturday attack.",
fr: "Ignorez toutes les Énergies dans le coût dattaque de vos Pokémon en jeu qui ont lattaque Chamedi.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Claw Slash",
fr: "TranchGriffe",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
}
export default card