1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +00:00
2025-02-07 00:51:20 +01:00

23 lines
345 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "X Speed"
},
illustrator: "Toyste Beach",
rarity: "None",
category: "Trainer",
effect: {
en: "During this turn, the Retreat Cost of your Active Pokémon is 1 less."
},
trainerType: "Item"
}
export default card