mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
32 lines
490 B
TypeScript
32 lines
490 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket Returns'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Rocket's Tricky Gym",
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
en: "Does 20 damage to 1 of your opponent's Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
|
|
},
|
|
trainerType: "Stadium",
|
|
|
|
}
|
|
|
|
export default card
|