1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 03:59:54 +00:00

57 lines
1.2 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 "../Obsidian Flames"
const card: Card = {
dexId: [303],
set: Set,
name: {
fr: "Mysdibule",
en: "Mawile",
es: "Mawile",
it: "Mawile",
pt: "Mawile",
de: "Flunkifer"
},
rarity: "Common",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
fr: "Mâchouille Malicieuse",
en: "Mischievous Crunch",
es: "Trituración Malvada",
it: "Sgranocchio Birichino",
pt: "Mastigada Maliciosa",
de: "Gemeiner Knirscher"
},
effect: {
fr: "Cette attaque inflige 30 dégâts pour chaque Énergie {P} attachée à ce Pokémon.",
en: "This attack does 30 damage for each {P} Energy attached to this Pokémon.",
es: "Este ataque hace 30 puntos de daño por cada Energía {P} unida a este Pokémon.",
it: "Questo attacco infligge 30 danni per ogni Energia {P} assegnata a questo Pokémon.",
pt: "Este ataque causa 30 pontos de dano para cada Energia {P} ligada a este Pokémon.",
de: "Diese Attacke fügt für jede an dieses Pokémon angelegte {P}-Energie 30 Schadenspunkte zu."
},
damage: "30×"
}],
retreat: 2,
regulationMark: "G",
variants: {
holo: false
},
illustrator: "0313"
}
export default card