mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
* fix: Add for some sets Signed-off-by: Avior <github@avior.me> * Added Sets titles Signed-off-by: Avior <github@avior.me> * fix: Finished last EX sets Signed-off-by: Avior <github@avior.me> * Change Discord Link text
22 lines
667 B
TypeScript
22 lines
667 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Unseen Forces'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Protective Orb",
|
|
fr: "Sphère Protectrice"
|
|
},
|
|
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Tool",
|
|
|
|
effect: {
|
|
fr: "Attachez Sphère Protectrice à 1 de vos Pokémon Évolués (Pokémon-ex exclus) qui ne possède pas déjà d'Outil Pokémon. Si le Pokémon auquel Sphère Protectrice est attachée est un Pokémon de base ou un Pokémon-ex, défaussez Sphère Protectrice.\n\nTant que Sphère Protectrice est attachée à un Pokémon, ce Pokémon n'a pas de Faiblesse."
|
|
}
|
|
}
|
|
|
|
export default card
|