mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
25 lines
622 B
TypeScript
25 lines
622 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Phoebe",
|
||
fr: "Spectra"
|
||
},
|
||
|
||
illustrator: "Kagemaru Himeno",
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
en: "During this turn, damage from your Pokémon VMAX’s attacks isn’t affected by any effects on your opponent’s Active Pokémon.",
|
||
fr: "Pendant ce tour, les dégâts des attaques de vos Pokémon-VMAX ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire."
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |