1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-12 08:51:57 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/125.ts

41 lines
608 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Mawile"
},
illustrator: "Kouki Saitou",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Metal"],
description: {
en: "It uses its docile-looking face to lull foes into\ncomplacency, then bites with its huge,\nrelentless jaws."
},
stage: "Basic",
attacks: [{
name: {
en: "Bite"
},
damage: 30,
cost: ["Metal"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1,
boosters: ["ho-oh", "lugia"]
}
export default card