mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
22 lines
462 B
TypeScript
22 lines
462 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV6s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Bola Love"
|
|
},
|
|
|
|
illustrator: "Studio Bora Inc.",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Pilih 1 lembar Pokémon yang memiliki nama yang sama dengan Pokémon di Arena lawan dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |