1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

52 lines
884 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [303],
set: Set,
name: {
en: "Mawile",
fr: "Mysdibule",
es: "Mawile",
it: "Mawile",
pt: "Mawile",
de: "Flunkifer"
},
rarity: "Common",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "Kouki Saitou",
description: {
en: "It chomps with its gaping mouth. Its huge jaws are actually steel horns that have been transformed."
},
attacks: [{
cost: ["Psychic"],
name: {
en: "Chomp Chomp Hold"
},
damage: 30,
effect: {
en: "During your opponent's next turn, the Defending Pokémon's attacks cost Colorless more, and its Retreat Cost is Colorless more."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card