mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
95 lines
2.2 KiB
TypeScript
95 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Forbidden Light'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Meowstic",
|
||
fr: "Mistigrix",
|
||
es: "Meowstic",
|
||
it: "Meowstic",
|
||
pt: "Meowstic",
|
||
de: "Psiaugon"
|
||
},
|
||
illustrator: "0313",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
678,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
evolveFrom: {
|
||
en: "Espurr",
|
||
fr: "Psystigri",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Teleportation Burst",
|
||
fr: "Téléportation Explosive",
|
||
es: "Explosión Teleportadora",
|
||
it: "Scoppio Teletrasporto",
|
||
pt: "Teletransporte Explosivo",
|
||
de: "Blitz-Teleportation"
|
||
},
|
||
effect: {
|
||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||
fr: "Échangez ce Pokémon avec l’un de vos Pokémon de Banc.",
|
||
es: "Cambia este Pokémon por 1 de tus Pokémon en Banca.",
|
||
it: "Scambia questo Pokémon con uno della tua panchina.",
|
||
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco.",
|
||
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Psychic",
|
||
fr: "Psyko",
|
||
es: "Psíquico",
|
||
it: "Psichico",
|
||
pt: "Psíquico",
|
||
de: "Psychokinese"
|
||
},
|
||
effect: {
|
||
en: "This attack does 30 more damage times the amount of Energy attached to your opponent’s Active Pokémon.",
|
||
fr: "Cette attaque inflige 30 dégâts supplémentaires 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 más por cada Energía unida al Pokémon Activo de tu rival.",
|
||
it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
|
||
pt: "Este ataque causa 30 pontos de dano a mais vezes a quantidade de Energia ligada ao Pokémon Ativo do seu oponente.",
|
||
de: "Diese Attacke fügt 30 Schadenspunkte mehr mal der Anzahl der an das Aktive Pokémon deines Gegners angelegten Energien zu."
|
||
},
|
||
damage: "30+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|