1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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

84 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 '../Deoxys'
const card: Card = {
name: {
en: "Magcargo",
fr: "Volcaropod"
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
219,
],
hp: 80,
types: [
"Fire",
],
evolveFrom: {
en: "Slugma",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Smooth Over",
fr: "Aplanir"
},
effect: {
en: "Once during your turn (before your attack), you may search your deck for a card. Shuffle your deck, then put that card on top of your deck. This power can't be used if Magcargo is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez choisir n'importe quelle carte dans votre deck. Mélangez votre deck puis placez cette carte au dessus de votre deck. Ce pouvoir ne peut pas être utilisé si Volcaropod est affecté par un État Spécial."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Knock Over",
fr: "Culbute"
},
effect: {
en: "You may discard any Stadium card in play.",
fr: "Vous pouvez défausser n'importe quelle carte Stade en jeu."
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Combustion",
fr: "Fournaise"
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card