1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

84 lines
1.9 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Meowstic",
fr: "Mistigrix",
es: "Meowstic",
it: "Meowstic",
pt: "Meowstic",
de: "Psiaugon"
},
illustrator: "Yuu Nishida",
rarity: "Rare",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
evolveFrom: {
en: "Espurr",
fr: "Psystigri"
},
abilities: [{
type: "Ability",
name: {
en: "Ear Moves",
fr: "Mouvements dOreilles",
es: "Movimiento de Orejas",
it: "Scuotiorecchie",
pt: "Movimentos de Orelha",
de: "Ohrenbewegung"
},
effect: {
en: "Once during your turn, you may move 1 damage counter from 1 of your Pokémon to 1 of your opponents Pokémon.",
fr: "Une fois pendant votre tour, vous pouvez déplacer un marqueur de dégâts de lun de vos Pokémon vers lun des Pokémon de votre adversaire.",
es: "Una vez durante tu turno, puedes mover 1 contador de daño de 1 de tus Pokémon a 1 de los Pokémon de tu rival.",
it: "Una sola volta durante il tuo turno, puoi spostare un segnalino danno da uno dei tuoi Pokémon a un Pokémon del tuo avversario.",
pt: "Uma vez durante o seu turno, você poderá mover 1 contador de dano de 1 dos seus Pokémon para 1 dos Pokémon do seu oponente.",
de: "Einmal während deines Zuges kannst du 1 Schadensmarke von 1 deiner Pokémon auf 1 Pokémon deines Gegners verschieben."
}
}],
attacks: [{
name: {
en: "Psychic Sphere",
fr: "Sphère Psy",
es: "Esfera Psíquica",
it: "Psicosfera",
pt: "Esfera Psíquica",
de: "Psychosphäre"
},
damage: 50,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card