1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

94 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Magcargo",
fr: "Volcaropod",
es: "Magcargo",
it: "Magcargo",
pt: "Magcargo",
de: "Magcargo"
},
illustrator: "Miki Tanaka",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
219,
],
hp: 120,
types: [
"Fire",
],
evolveFrom: {
en: "Slugma",
fr: "Limagma",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Stomp Off",
fr: "Tohu-Bohu",
es: "Pisotear",
it: "Pestatura",
pt: "Sair Irritado",
de: "Davonstapfen"
},
effect: {
en: "Discard the top 2 cards of your opponents deck.",
fr: "Défaussez les 2 cartes du dessus du deck de votre adversaire.",
es: "Descarta las 2 primeras cartas de la baraja de tu rival.",
it: "Scarta le prime due carte del mazzo del tuo avversario.",
pt: "Descarte as 2 primeiras cartas do baralho do seu oponente.",
de: "Lege die obersten 2 Karten des Deck deines Gegners auf seinen Ablagestapel."
},
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Flamethrower",
fr: "Lance-Flammes",
es: "Lanzallamas",
it: "Lanciafiamme",
pt: "Lança-chamas",
de: "Flammenwurf"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta unEnergia assegnata a questo Pokémon.",
pt: "Descarte 1 Energia deste Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card