mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
484 B
TypeScript
22 lines
484 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVK"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "キャプチャーアロマ"
|
|
},
|
|
|
|
illustrator: "sadaji",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "コインを1回投げる。オモテなら進化ポケモン、ウラならたねポケモンを自分の山札から1枚選び、相手に見せて、手札に加える。そして山札を切る。"
|
|
},
|
|
|
|
trainerType: "Item",
|
|
rarity: "None"
|
|
}
|
|
|
|
export default card |