1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

80 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
fr: "Roigada de Galar V",
en: "Galarian Slowking V",
es: "Slowking de Galar V",
it: "Slowking di Galar V",
pt: "Slowking de Galar V",
de: "Galar-Laschoking V"
},
illustrator: "Tomokazu Komiya",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 220,
types: ["Darkness"],
attacks: [{
name: {
fr: "Concoction",
en: "Concoction",
es: "Brebaje",
it: "Intruglio",
pt: "Elixir Mágico",
de: "Gebräu"
},
effect: {
fr: "Défaussez une carte de votre main. Dans ce cas, piochez 3 cartes.",
en: "Discard a card from your hand. If you do, draw 3 cards.",
es: "Descarta 1 carta de tu mano. Si lo haces, roba 3 cartas.",
it: "Scarta una delle carte che hai in mano. Se lo fai, pesca tre carte.",
pt: "Descarte 1 carta da sua mão. Se fizer isto, compre 3 cartas.",
de: "Lege 1 Karte aus deiner Hand auf deinen Ablagestapel. Wenn du das machst, ziehe 3 Karten."
},
cost: ["Colorless"]
}, {
name: {
fr: "Promesse de Déclin",
en: "Word of Ruin",
es: "Palabra de Perdición",
it: "Parola Nefasta",
pt: "Maldizer",
de: "Wort des Verderbens"
},
effect: {
fr: "À la fin du prochain tour de votre adversaire, le Pokémon Défenseur sera mis K.O.",
en: "At the end of your opponents next turn, the Defending Pokémon will be Knocked Out.",
es: "Al final del próximo turno de tu rival, el Pokémon Defensor quedará Fuera de Combate.",
it: "Alla fine del prossimo turno del tuo avversario, il Pokémon difensore verrà messo KO.",
pt: "O Pokémon Defensor será Nocauteado no final do próximo turno do seu oponente.",
de: "Am Ende des nächsten Zuges deines Gegners wird das Verteidigende Pokémon kampfunfähig."
},
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card