mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
34 lines
727 B
TypeScript
34 lines
727 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Hidden Fates'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Misty’s Cerulean City Gym",
|
||
fr: "Arène d’Azuria d’Ondine",
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Les attaques des Staross-GX (les vôtres et ceux de votre adversaire) infligent 40 dégâts supplémentaires au Pokémon Actif de l’adversaire (avant application de la Faiblesse et de la Résistance).",
|
||
en: "The attacks of Starmie-GX (both yours and your opponent’s) do 40 more damage to the opponent’s Active Pokémon (before applying Weakness and Resistance)."
|
||
},
|
||
trainerType: "Stadium",
|
||
|
||
}
|
||
|
||
export default card
|