1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 18:47:50 +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

74 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Lost Thunder'
const card: Card = {
name: {
en: "Alolan Persian",
fr: "Persian dAlola",
es: "Persian de Alola",
it: "Persian di Alola",
pt: "Persian de Alola",
de: "Alola-Snobilikat"
},
illustrator: "Tomokazu Komiya",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
53,
],
hp: 90,
types: [
"Darkness",
],
evolveFrom: {
en: "Alolan Meowth",
fr: "Miaouss dAlola",
},
stage: "Stage1",
attacks: [
{
name: {
en: "Empty Threat",
fr: "Menace en lAir",
es: "Falsa Amenaza",
it: "Minacce a Vuoto",
pt: "Ameaça Vazia",
de: "Leere Drohung"
},
effect: {
en: "This attack does 30 less damage times the amount of Energy attached to your opponents Active Pokémon.",
fr: "Cette attaque inflige 30 dégâts de moins multipliés par le nombre dÉnergies attachées au Pokémon Actif de votre adversaire.",
es: "Este ataque hace 30 puntos de daño menos por cada Energía unida al Pokémon Activo de tu rival.",
it: "Questo attacco infligge 30 danni in meno per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
pt: "Este ataque causa 30 pontos de dano a menos vezes a quantidade de Energia ligada ao Pokémon Ativo do seu oponente.",
de: "Diese Attacke fügt 30 Schadenspunkte weniger mal der Anzahl der an das Aktive Pokémon deines Gegners angelegten Energien zu."
},
damage: "90-",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card