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

50 lines
793 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 "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "長尾怪手"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
'zh-tw': "擁有如同手掌般靈活的尾巴。棲息在樹上,有古書將其敘述為 只有一隻手的奇妙寶可夢。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "惡作劇之尾"
},
effect: {
'zh-tw': "查看對手的牌庫上方1張卡回復原樣。若希望重洗那個牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "抓"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card