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

51 lines
828 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 "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷電獸"
},
illustrator: "GIDORA",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
description: {
'zh-tw': "會用電流刺激肌肉,因此能迅速行動。電流也能讓 肌肉放鬆並快速治癒酸痛。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "咬住"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "進擊鐳射"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢身上附有「寶可夢道具」則增加80點傷害。"
},
damage: "80+",
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card