mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 07:32:11 +00:00
* 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>
40 lines
929 B
TypeScript
40 lines
929 B
TypeScript
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 |