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

29 lines
588 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "パルデアの仲間たち",
id: "Teman-teman Paldea",
'zh-tw': "帕底亞的夥伴",
'zh-cn': "帕底亞的夥伴"
},
illustrator: "Cona Nitanda",
rarity: "None",
category: "Trainer",
effect: {
ja: "自分の山札を3枚引く。",
id: "Ambil 3 kartu dari atas Deck sendiri.",
'zh-tw': "從自己的牌庫抽出3張卡。",
'zh-cn': "從自己的牌庫抽出3張卡。"
},
trainerType: "Supporter",
regulationMark: "H"
}
export default card