1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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

94 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Meowstic",
fr: "Mistigrix",
es: "Meowstic",
it: "Meowstic",
pt: "Meowstic",
de: "Psiaugon"
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
678,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Espurr",
fr: "Psystigri",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Allure",
fr: "Allure",
es: "Atractivo",
it: "Affascinante",
pt: "Fascinar",
de: "Verlockung"
},
effect: {
en: "Draw 3 cards.",
fr: "Piochez 3 cartes.",
es: "Roba 3 cartas.",
it: "Pesca tre carte.",
pt: "Compre 3 cartas.",
de: "Ziehe 3 Karten."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Hand Kinesis",
fr: "Télékinésie en Main",
es: "Manoquinesis",
it: "Manocinèsi",
pt: "Cinese de Mão",
de: "Handkinese"
},
effect: {
en: "This attack does 10 damage for each card in your hand.",
fr: "Cette attaque inflige 10 dégâts pour chaque carte dans votre main.",
es: "Este ataque hace 10 puntos de daño por cada carta en tu mano.",
it: "Questo attacco infligge 10 danni per ogni carta nella tua mano.",
pt: "Este ataque causa 10 pontos de dano para cada carta na sua mão.",
de: "Diese Attacke fügt 10 Schadenspunkte mal der Anzahl der Karten auf deiner Hand zu."
},
damage: "10×",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card