1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

90 lines
2.0 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 = {
dexId: [620],
set: Set,
name: {
en: "Mienshao",
fr: "Shaofouine",
es: "Mienshao",
it: "Mienshao",
pt: "Mienshao",
de: "Wie-Shu"
},
illustrator: "Taira Akitsu",
rarity: "Rare",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
evolveFrom: {
en: "Mienfoo",
fr: "Kungfouine",
es: "Mienfoo",
it: "Mienfoo",
pt: "Mienfoo",
de: "Lin-Fu"
},
attacks: [{
name: {
en: "Pound",
fr: "Écras'Face",
es: "Destructor",
it: "Botta",
pt: "Pancada",
de: "Klaps"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
en: "Spinning Whip",
fr: "Fouet Tournant",
es: "Látigo Giratorio",
it: "Frustata Rotante",
pt: "Chicote Giratório",
de: "Wirbelpeitsche"
},
effect: {
en: "Your opponent's Active Pokémon is now Confused. Shuffle this Pokémon and all attached cards into your deck.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus. Mélangez dans votre deck ce Pokémon et toutes les cartes attachées.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido. Pon este Pokémon y todas las cartas unidas a él en tu baraja, y baraja todas las cartas.",
it: "Il Pokémon attivo del tuo avversario viene confuso. Rimischia questo Pokémon e tutte le carte a esso assegnate nel tuo mazzo.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso. Embaralhe este Pokémon e todas as cartas ligadas a ele no seu baralho.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt. Mische dieses Pokémon und alle angelegten Karten in dein Deck."
},
damage: 90,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "When Mienshao lets out a bizarre wail, you're in danger. A flurry of kicks and chops too fast to see is about to be unleashed!"
}
}
export default card