mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
21 lines
420 B
TypeScript
21 lines
420 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S12"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "葉隠れポンチョ"
|
|
},
|
|
|
|
illustrator: "Studio Bora Inc.",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "ポケモンのどうぐは、自分のポケモンにつけて使う。ポケモン1匹につき1枚だけつけられ、つけたままにする。"
|
|
},
|
|
|
|
trainerType: "Tool"
|
|
}
|
|
|
|
export default card |