mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
68 lines
1.3 KiB
TypeScript
68 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldea Evolved"
|
|
|
|
const card: Card = {
|
|
dexId: [575],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Mesmérella",
|
|
en: "Gothorita",
|
|
es: "Gothorita",
|
|
it: "Gothorita",
|
|
pt: "Gothorita",
|
|
de: "Hypnomorba"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Psychic"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
fr: "Contrôleur d'Esprit",
|
|
en: "Mind Bend",
|
|
es: "Fusión Mental",
|
|
it: "Fusione Mentale",
|
|
pt: "Dobra Mentes",
|
|
de: "Gedankenverbiegung"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
|
|
en: "Your opponent's Active Pokémon is now Confused.",
|
|
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
|
|
it: "Il Pokémon attivo del tuo avversario viene confuso.",
|
|
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
|
|
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
|
|
},
|
|
|
|
damage: 20
|
|
}, {
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Super Psy",
|
|
en: "Super Psy Bolt",
|
|
es: "Superrayo Psi",
|
|
it: "Superpsico",
|
|
pt: "Super-raio Psíquico",
|
|
de: "Super-Psischlag"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |