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

22 lines
624 B
TypeScript
Raw Permalink 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "泰姆"
},
illustrator: "Akira Komayama",
category: "Trainer",
effect: {
'zh-tw': "從自己的手牌選擇1張寶可夢卡向對手宣言那隻寶可夢的名稱後翻到反面放置。對手回答那隻寶可夢的HP。將翻到反面的寶可夢卡翻到正面若正確則對手從牌庫抽出4張卡。若不正確則自己從牌庫抽出4張卡。然後將放置的卡放回自己的手牌。"
},
trainerType: "Supporter",
regulationMark: "H"
}
export default card