mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
22 lines
446 B
TypeScript
22 lines
446 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV8s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Daya Tarik Lisia"
|
|
},
|
|
|
|
illustrator: "Nobusawa/Mochipuyo",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Pilih 1 Pokémon Basic di Cadangan lawan, lalu tukar dengan Pokémon Bertarung. Setelah itu, ubah kondisi Pokémon Bertarung yang baru menjadi Pusing."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |