mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
22 lines
467 B
TypeScript
22 lines
467 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV8s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Levigato"
|
|
},
|
|
|
|
illustrator: "GIDORA",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Lihat 7 kartu dari atas Deck sendiri, pilih Pokémon dan Trainer di antaranya masing-masing 1 lembar, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kocok kembali sisa kartu ke Deck."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |