mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
401 B
TypeScript
22 lines
401 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV4s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Norman"
|
|
},
|
|
|
|
illustrator: "Hideki Ishikawa",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Ambil 2 kartu dari atas Deck sendiri. Jika Pokémon Bertarung lawan adalah Pokémon {ex}, ambil lagi 2 kartu tambahan."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |