1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +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

97 lines
1.6 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: "Doublade",
fr: "Dimoclès",
es: "Doublade",
it: "Doublade",
pt: "Doublade",
de: "Duokles"
},
illustrator: "Aya Kusube",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Honedge",
fr: "Monorpale"
},
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 30,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Double Slash",
fr: "Double Lame",
es: "Cuchillada Doble",
it: "Doppia Lacerazione",
pt: "Talho Duplo",
de: "Doppelschlitzer"
},
effect: {
en: "Flip 2 coins. This attack does 80 damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 80 dégâts pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 80 puntos de daño por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 80 danni ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 80 pontos de dano para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 80 Schadenspunkte pro Kopf zu."
},
damage: "80×",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 2,
hp: 90,
types: ["Metal"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card