1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +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

98 lines
2.2 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Bewear",
fr: "Chelours",
es: "Bewear",
it: "Bewear",
pt: "Bewear",
de: "Kosturso"
},
illustrator: "Ryuta Fuse",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Stufful",
fr: "Nounourson"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hammer Arm",
fr: "Marto-Poing",
es: "Machada",
it: "Martelpugno",
pt: "Braço de Martelo",
de: "Hammerarm"
},
effect: {
en: "Discard the top card of your opponents deck.",
fr: "Défaussez la carte du dessus du deck de votre adversaire.",
es: "Descarta la primera carta de la baraja de tu rival.",
it: "Scarta la prima carta del mazzo del tuo avversario.",
pt: "Descarte a carta de cima do baralho do seu oponente.",
de: "Lege die oberste Karte des Decks deines Gegners auf seinen Ablagestapel."
},
damage: 90,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Big Throw",
fr: "Grand Lancer",
es: "Gran Lanzamiento",
it: "Gran Lancio",
pt: "Arremessão",
de: "Großer Wurf"
},
effect: {
en: "Flip a coin. If heads, discard your opponents Active Pokémon and all attached cards.",
fr: "Lancez une pièce. Si cest face, défaussez le Pokémon Actif de votre adversaire et toutes les cartes attachées.",
es: "Lanza 1 moneda. Si sale cara, descarta el Pokémon Activo de tu rival y todas las cartas unidas a él.",
it: "Lancia una moneta. Se esce testa, scarta il Pokémon attivo del tuo avversario e tutte le carte a esso assegnate.",
pt: "Jogue 1 moeda. Se sair cara, descarte o Pokémon Ativo do seu oponente e todas as cartas ligadas a ele.",
de: "Wirf 1 Münze. Lege bei Kopf das Aktive Pokémon deines Gegners und alle angelegten Karten auf seinen Ablagestapel."
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
hp: 140,
types: ["Colorless"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card