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

40 lines
1.1 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.

import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Air Balloon",
fr: "Ballon",
es: "Globo Helio",
it: "Palloncino",
pt: "Balão de Ar",
de: "Luftballon"
},
illustrator: "Yoshinobu Saito",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "The Retreat Cost of the Pokémon this card is attached to is ColorlessColorless less.",
fr: "Le Coût de Retraite du Pokémon auquel cette carte est attachée est diminué de ColorlessColorless.",
es: "El Coste de Retirada del Pokémon al que está unida esta carta es de ColorlessColorless menos.",
it: "Il costo di ritirata del Pokémon a cui è assegnata questa carta è ridotto di ColorlessColorless.",
pt: "O custo de Recuo do Pokémon ao qual esta carta está ligada é ColorlessColorless a menos.",
de: "Die Rückzugskosten des Pokémon, an das diese Karte angelegt ist, verringern sich um ColorlessColorless."
},
trainerType: "Tool",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card