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

54 lines
970 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 "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雙尾怪手"
},
illustrator: "Atsushi Furusawa",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
description: {
'zh-tw': "不管做什麼事都會用到尾巴。如果牠用2根尾巴抱緊你, 就代表牠真的和你很親近。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "抓到飽"
},
effect: {
'zh-tw': "擲硬幣直到出現反面,從自己的牌庫任意選擇最多與正面出現的次數相同數量的卡,加入手牌。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "拍落"
},
effect: {
'zh-tw': "在不看正面的情況下選擇1張對手的手牌將其丟棄。"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card