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

68 lines
1.3 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: "Binacle",
fr: "Opermine",
es: "Binacle",
it: "Binacle",
pt: "Binacle",
de: "Bithora"
},
illustrator: "Saya Tsuruta",
rarity: "Common",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Dual Chop",
fr: "Double Baffe",
es: "Golpe Bis",
it: "Doppiocolpo",
pt: "Pancada Dupla",
de: "Doppelhieb"
},
effect: {
en: "Flip 2 coins. This attack does 50 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 50 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 50 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 50 pontos de dano para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 50 Schadenspunkte pro Kopf zu."
},
damage: "50×",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
hp: 80,
types: ["Fighting"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card