1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

74 lines
1.5 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: "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
},
stage: "Basic",
description: {
en: "After two Binacle find a suitably sized rock, they adhere themselves to it and live together. They cooperate to gather food during high tide."
}
}
export default card