mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-15 13:09:54 +00:00
42 lines
913 B
TypeScript
42 lines
913 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../XY'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Cassius",
|
|
fr: "Olivier",
|
|
es: "Olivier",
|
|
it: "Oliviero",
|
|
pt: "Cassius",
|
|
de: "Olivier"
|
|
},
|
|
illustrator: "Masakazu Fukuda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Mélangez l'un de vos Pokémon et toutes les cartes qui lui sont attachées avec votre deck.",
|
|
en: "Shuffle 1 of your Pokémon and all cards attached to it into your deck.",
|
|
es: "Pon 1 de tus Pokémon y todas las cartas unidas a él en tu baraja, y barájalas todas.",
|
|
it: "Rimischia uno dei tuoi Pokémon e tutte le carte a esso assegnate nel tuo mazzo.",
|
|
pt: "Embaralhe 1 dos seus Pokémon e todos os cards ligados a ele em seu baralho.",
|
|
de: "Mische 1 deiner Pokémon und alle an es angelegten Karten zurück in dein Deck."
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|