1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

27 lines
885 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV8"
const card: Card = {
set: Set,
name: {
ja: "推理セット",
'zh-tw': "推理組合",
'zh-cn': "推理組合"
},
illustrator: "AYUMI ODASHIMA",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "自分の山札を上から3枚見て、好きな順番に入れ替えて、山札の上にもどす。または、そのカードをすべてウラにして切り、山札の下にもどす。",
'zh-tw': "查看自己的牌庫上方3張卡以任意順序排列放回牌庫上方。或者將那些卡全部翻回反面並重洗放回牌庫下方。",
'zh-cn': "查看自己的牌庫上方3張卡以任意順序排列放回牌庫上方。或者將那些卡全部翻回反面並重洗放回牌庫下方。"
},
trainerType: "Item",
regulationMark: "H"
}
export default card