1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07:09:54 +00:00

23 lines
359 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Brock"
},
illustrator: "Ryuta Fuse",
category: "Trainer",
effect: {
en: "Take 1 F Energy from your Energy Zone and attach it to your Golem or Onix."
},
trainerType: "Supporter",
rarity: "Two Star"
}
export default card