1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 08:39:54 +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

88 lines
1.7 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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Alolan Meowth",
fr: "Miaouss dAlola",
es: "Meowth de Alola",
it: "Meowth di Alola",
pt: "Meowth de Alola",
de: "Alola-Mauzi"
},
illustrator: "sui",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
52,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
name: {
en: "Nasty Plot",
fr: "Machination",
es: "Maquinación",
it: "Congiura",
pt: "Trama Maldosa",
de: "Ränkeschmied"
},
effect: {
en: "Flip a coin. If heads, search your deck for a card and put it into your hand. Then, shuffle your deck.",
fr: "Lancez une pièce. Si cest face, cherchez une carte dans votre deck puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
es: "Lanza 1 moneda. Si sale cara, busca en tu baraja 1 carta y ponla en tu mano. Después, baraja las cartas de tu baraja.",
it: "Lancia una moneta. Se testa, cerca una carta nel tuo mazzo e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Jogue 1 moeda. Se sair cara, procure por 1 carta no seu baralho e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Wirf 1 Münze. Durchsuche bei Kopf dein Deck nach 1 Karte und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
},
{
cost: [
"Darkness",
],
name: {
en: "Scratch",
fr: "Griffe",
es: "Arañazo",
it: "Graffio",
pt: "Arranhão",
de: "Kratzer"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1
}
export default card