1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
872 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Burning Shadows'
const card: Card = {
name: {
en: "Weakness Policy",
fr: "Vulné-Assurance",
es: "Seguro Debilidad",
it: "Vulneropolizza",
pt: "Política de Fraqueza",
de: "Schwächenschutz"
},
illustrator: "Ayaka Yoshida",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Le Pokémon auquel cette carte est attachée na pas de Faiblesse.",
en: "The Pokémon this card is attached to has no Weakness.",
es: "El Pokémon al que esté unida esta carta no tiene ninguna Debilidad.",
it: "Il Pokémon a cui è assegnata questa carta non ha debolezza.",
pt: "O Pokémon ao qual esta carta está ligada não possui Fraqueza.",
de: "Das Pokémon, an das diese Karte angelegt ist, hat keine Schwäche."
},
trainerType: "Tool",
}
export default card