mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
80 lines
2.5 KiB
TypeScript
80 lines
2.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
dexId: [678],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Meowstic",
|
|
fr: "Mistigrix",
|
|
es: "Meowstic",
|
|
it: "Meowstic",
|
|
pt: "Meowstic",
|
|
de: "Psiaugon"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Psychic"],
|
|
|
|
evolveFrom: {
|
|
en: "Espurr",
|
|
fr: "Psystigri",
|
|
es: "Espurr",
|
|
it: "Espurr",
|
|
pt: "Espurr",
|
|
de: "Psiau"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
abilities: [{
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Inviting Ears",
|
|
fr: "Oreilles Accueillantes",
|
|
es: "Orejas Cautivadoras",
|
|
it: "Orecchie Accattivanti",
|
|
pt: "Orelhas Convidativas",
|
|
de: "Einladende Ohren"
|
|
},
|
|
|
|
effect: {
|
|
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may search your deck for up to 2 Supporter cards, reveal them, and put them into your hand. Then, shuffle your deck.",
|
|
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez chercher dans votre deck jusqu'à 2 cartes Supporter, les montrer, puis les ajouter à votre main. Mélangez ensuite votre deck.",
|
|
es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a 1 de tus Pokémon durante tu turno, puedes buscar en tu baraja hasta 2 cartas de Partidario, enseñarlas y ponerlas en tu mano. Después, baraja las cartas de tu baraja.",
|
|
it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi cercare nel tuo mazzo fino a due carte Aiuto, mostrarle e aggiungerle a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá procurar por até 2 cartas de Apoiador no seu baralho, revelá-las e colocá-las na sua mão. Em seguida, embaralhe o seu baralho.",
|
|
de: "Wenn du dieses Pokémon aus deiner Hand spielst, um 1 deiner Pokémon während deines Zuges zu entwickeln, kannst du dein Deck nach bis zu 2 Unterstützerkarten durchsuchen, sie deinem Gegner zeigen und sie auf deine Hand nehmen. Mische anschließend dein Deck."
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: ["Psychic", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Super Psy Bolt",
|
|
fr: "Super Psy",
|
|
es: "Superrayo Psi",
|
|
it: "Superpsico",
|
|
pt: "Super-raio Psíquico",
|
|
de: "Super-Psischlag"
|
|
},
|
|
|
|
damage: 80
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |