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

43 lines
746 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 "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "晃晃斑"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
description: {
'zh-tw': "每一隻身上的斑點都不一樣。會用搖搖晃晃的動作 巧妙地避開對手的攻擊。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "搖晃旋轉"
},
effect: {
'zh-tw': "對手的所有寶可夢各受到10點傷害。將對手的戰鬥寶可夢【混亂】。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card