1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

90 lines
1.8 KiB
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",
es: "Persian",
it: "Persian",
pt: "Persian",
de: "Snobilikat"
},
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",
es: "Reunión de Gatos",
it: "Raduno Felino",
pt: "Reunião de Gatos",
de: "Katzentreffen"
},
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.",
es: "Ignora todas las Energías en los costes de los ataques de cada uno de tus Pokémon en juego que tenga el ataque Sábado Gatuno.",
it: "Ignora tutte le Energie necessarie per usare gli attacchi dei tuoi Pokémon in gioco che hanno lattacco Giornogatto.",
pt: "Ignore todas as Energias nos custos dos ataques de cada um dos seus Pokémon em jogo que tiver o ataque Dia de Gato.",
de: "Ignoriere alle Energien in den Kosten der Attacken jedes deiner Pokémon im Spiel, das die Attacke Schnurrtag hat."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Claw Slash",
fr: "TranchGriffe",
es: "Cuchillada Garra",
it: "Lacerartiglio",
pt: "Golpe de Garra",
de: "Klauenschlitzer"
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 0
}
export default card