1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-15 13:09:54 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

92 lines
2.0 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Muk",
fr: "Grotadmorv",
es: "Muk",
it: "Muk",
pt: "Muk",
de: "Sleimok"
},
illustrator: "Eri Yamaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 140,
types: [
"Darkness",
],
evolveFrom: {
en: "Grimer",
fr: "Tadmorv"
},
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Triple Poison",
fr: "Triple Poison",
es: "Veneno Triple",
it: "Triplo Veleno",
pt: "Veneno Triplo",
de: "Dreifachgift"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned. During Pokémon Checkup, put 3 damage counters on that Pokémon instead of 1.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Pendant le Contrôle Pokémon, placez 3 marqueurs de dégâts sur ce Pokémon-là au lieu dun.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Durante el Chequeo Pokémon, pon 3 contadores de daño en ese Pokémon en vez de 1.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato. Durante il controllo Pokémon, metti tre segnalini danno invece di uno su quel Pokémon.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Durante o Checape Pokémon, coloque 3 contadores de dano ao invés de 1 naquele Pokémon.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Lege beim Pokémon-Check 3 Schadensmarken anstelle von 1 Schadensmarke auf jenes Pokémon."
},
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Sludge Whirlpool",
fr: "Tourbillon de Boue",
es: "Torbellino de Residuos",
it: "Fangovortice",
pt: "Redemoinho de Lodo",
de: "Schlammstrudel"
},
damage: 120,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 4,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card