1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon b6fbcc1b77
fix: add EX French translations (#169)
* fix: Add for some sets

Signed-off-by: Avior <github@avior.me>

* Added Sets titles

Signed-off-by: Avior <github@avior.me>

* fix: Finished last EX sets

Signed-off-by: Avior <github@avior.me>

* Change Discord Link text
2021-11-15 16:24:10 +01:00

71 lines
1.4 KiB
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 '../Sandstorm'
const card: Card = {
name: {
en: "Mawile",
fr: "Mysdibule"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
303,
],
hp: 60,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scam",
fr: "Arnaque"
},
effect: {
en: "Look at your opponent's hand. You may have your opponent shuffle a Supporter card you find there into his or her deck. If you do, your opponent draws a card.",
fr: "Regardez la main de votre adversaire. Si vous y trouvez une carte Supporter, vous pouvez demander à votre adversaire de la mélanger de nouveau à son deck. Dans ce cas, votre adversaire pioche une carte."
},
},
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Metal Hook",
fr: "Crochet métallique"
},
effect: {
en: "Before doing damage, you may switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon. If you do, this attack does 20 damage to the new Defending Pokémon.",
fr: "Avant d'infliger des dégâts, vous pouvez échanger un des Pokémon Défenseur de votre adversaire contre un des Pokémon de son Banc. Dans ce cas, cette attaque inflige 20 dégâts au nouveau Pokémon Défenseurs."
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card