1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32: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

40 lines
929 B
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 '../Rebel Clash'
const card: Card = {
set: Set,
name: {
en: "Big Charm",
fr: "Grande Amulette",
es: "Gran Amuleto",
it: "Amuleto Grande",
pt: "Pingente Grande",
de: "Großes Amulett"
},
illustrator: "inose yukie",
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "The Pokémon this card is attached to gets +30 HP.",
fr: "Cette carte ajoute 30 PV au Pokémon auquel elle est attachée.",
es: "El Pokémon al que está unida esta carta obtiene 30 PS más.",
it: "Il Pokémon a cui è assegnata questa carta ha 30 PS in più.",
pt: "O Pokémon ao qual esta carta está ligada recebe 30 PS a mais.",
de: "Das Pokémon, an das diese Karte angelegt ist, erhält +30 KP."
},
trainerType: "Tool",
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card