1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +00:00

feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s

This commit is contained in:
2023-11-12 14:56:22 +01:00
committed by GitHub
parent e0e3a1a4fd
commit 3c93a3534c
988 changed files with 56362 additions and 22 deletions

View File

@ -0,0 +1,32 @@
import { Card } from "../../../interfaces"
import Set from "../151"
const card: Card = {
set: Set,
name: {
fr: "Lunettes de Protection",
en: "Protective Goggles",
es: "Gafas de Seguridad",
it: "Visieraprotettiva",
pt: "Óculos Protetores",
de: "Sicherheitsbrille"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
fr: "Le Pokémon de base auquel cette carte est attachée n'a pas de Faiblesse.",
en: "The Basic Pokémon this card is attached to has no Weakness.",
es: "El Pokémon Básico al que esté unida esta carta no tiene ninguna Debilidad.",
it: "Il Pokémon Base a cui è assegnata questa carta non ha debolezza.",
pt: "O Pokémon Básico ao qual esta carta está ligada não tem Fraqueza.",
de: "Das Basis-Pokémon, an das diese Karte angelegt ist, hat keine Schwäche."
},
trainerType: "Tool",
regulationMark: "G"
}
export default card