mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
81 lines
1.8 KiB
TypeScript
81 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Crystal Guardians'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Mawile",
|
||
fr: "Mysdibule",
|
||
de: "Flunkifer"
|
||
},
|
||
illustrator: "Kagemaru Himeno",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
303,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Metal",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Mining",
|
||
fr: "Minage",
|
||
de: "Bergbau"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for a Trainer card, show it to your opponent, and put it into your hand. If that card is a Pokémon Tool card, you may attach it to 1 of your Pokémon instead. Shuffle your deck afterward.",
|
||
fr: "Choisissez dans votre deck une carte Dresseur, montrez-la à votre adversaire et placez-la dans votre main. Si cette carte est une carte Outil Pokémon, vous pouvez l'attacher à 1 de vos Pokémon. Ensuite, mélangez votre deck.",
|
||
de: "Durchsuche dein Deck nach einer Trainerkarte, zeige sie deinem Gegner und nimm sie auf die Hand. Wenn diese Karte eine Pokémon-Ausrüstungs-Karte ist, kannst du sie direkt an 1 deiner Pokémon anlegen. Mische dein Deck danach."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Bite Off",
|
||
fr: "Arracher d'un coup de dent",
|
||
de: "Abbeißen"
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon is Pokémon-ex, this attack does 20 damage plus 30 more damage.",
|
||
fr: "Si le Pokémon Défenseur est un Pokémon-ex, cette attaque inflige 20 dégâts plus 30 dégâts supplémentaires.",
|
||
de: "Wenn das Verteidigende Pokémon ein Pokémon-ex ist, fügt dieser Angriff 20 Schadenspunkte plus 30 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "20+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Grass",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|