1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00

75 lines
994 B
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 '../BREAKpoint'
const card: Card = {
name: {
en: "Mawile",
fr: "Mysdibule",
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
303,
],
hp: 80,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tight Jaw",
fr: "Mâchoire Serrée",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Cavernous Chomp",
fr: "Mâchoire Caverneuse",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card