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

51 lines
860 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 "../SCB"
const card: Card = {
set: Set,
name: {
'zh-tw': "師父鼬"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
description: {
'zh-tw': "當牠用奇妙聲音發出叫喊時是很危險的,由快到無法看清的踢腿和手刀組成的連續攻擊將接踵而來。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "拍擊"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "旋轉鞭打"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。"
},
damage: 90,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card