mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
60 lines
1.2 KiB
TypeScript
60 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Mawile",
|
||
fr: "Mysdibule"
|
||
},
|
||
|
||
illustrator: "kawayoo",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Metal"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Powerful Vise",
|
||
fr: "Étau Costaud"
|
||
},
|
||
|
||
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: 20,
|
||
cost: ["Metal"]
|
||
}, {
|
||
name: {
|
||
en: "Piercing Strike",
|
||
fr: "Coup Transperçant"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack’s damage isn’t affected by Weakness or Resistance, or by any effects on your opponent’s Active Pokémon.",
|
||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire."
|
||
},
|
||
|
||
damage: 100,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |