mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
22 lines
569 B
TypeScript
22 lines
569 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVK"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "ロストスイーパー"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "このカードは、自分の手札を1枚、ロストゾーンに置かなければ使えない。\n\nおたがいの場のポケモンについている「ポケモンのどうぐ」と場に出ている「スタジアム」の中から1枚選び、ロストゾーンに置く。"
|
|
},
|
|
|
|
trainerType: "Item",
|
|
rarity: "None"
|
|
}
|
|
|
|
export default card |