mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
27 lines
909 B
TypeScript
27 lines
909 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S12"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "阿渡",
|
||
th: "วาตารุ",
|
||
ja: "ワタル"
|
||
},
|
||
|
||
illustrator: "Ken Sugimori",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "從自己的牌庫選擇最多3張【龍】寶可夢卡,在給對手看過後加入手牌。並且重洗牌庫。",
|
||
th: "เลือกการ์ดโปเกมอน[มังกร]ได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด",
|
||
ja: "自分の山札からポケモンを3枚まで選び、相手に見せて、手札に加える。そして山札を切る。"
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "F",
|
||
rarity: "Uncommon"
|
||
}
|
||
|
||
export default card |