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

52 lines
867 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 "../SVC"
const card: Card = {
set: Set,
name: {
'zh-tw': "小貓怪"
},
illustrator: "kurumitsu",
category: "Pokemon",
hp: 40,
types: ["Lightning"],
description: {
'zh-tw': "每當活動身體時,肌肉的伸縮會產生電流。當遇上危機時,身體會發光。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "大吼叫"
},
effect: {
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]"
}
}],
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 10,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card