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

101 lines
2.8 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Mandibuzz",
fr: "Vaututrice",
es: "Mandibuzz",
it: "Mandibuzz",
pt: "Mandibuzz",
de: "Grypheldis"
},
illustrator: "kodama",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Vullaby",
fr: "Vostourno"
},
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Bone Rush",
fr: "Charge Os",
es: "Ataque Óseo",
it: "Ossoraffica",
pt: "Fúria de Ossos",
de: "Knochenhatz"
},
effect: {
en: "Flip a coin until you get tails. This attack does 30 damage for each heads.",
fr: "Lancez une pièce jusquà obtenir un côté pile. Cette attaque inflige 30 dégâts pour chaque côté face.",
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño por cada cara.",
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni ogni volta che esce testa.",
pt: "Jogue 1 moeda até sair coroa. Este ataque causa 30 pontos de dano para cada cara.",
de: "Wirf so lange 1 Münze, bis zum ersten Mal das Ergebnis Zahl kommt. Diese Attacke fügt 30 Schadenspunkte pro Kopf zu."
},
damage: "30×",
},
{
cost: [
"Darkness",
"Darkness",
],
name: {
en: "Blindside",
fr: "Angle Mort",
es: "Lado Ciego",
it: "Latocieco",
pt: "Ponto Cego",
de: "Aus heiterem Himmel"
},
effect: {
en: "This attack does 100 damage to 1 of your opponents Pokémon that has any damage counters on it. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 100 dégâts à lun des Pokémon de votre adversaire ayant au moins un marqueur de dégâts. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 100 puntos de daño a 1 de los Pokémon de tu rival que tenga algún contador de daño sobre él. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 100 danni a uno dei Pokémon del tuo avversario che ha dei segnalini danno. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque causa 100 pontos de dano a 1 dos Pokémon do seu oponente que tiver algum contador de dano nele (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt 1 Pokémon deines Gegners, auf dem mindestens 1 Schadensmarke liegt, 100 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 2,
hp: 120,
types: ["Darkness"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card