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

47 lines
694 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: "Scav",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
description: {
'zh-tw': "雖然儲存的電能越多,移動的速度也會變得越快,但同時也會變得更容易爆炸。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "光彈"
},
damage: 60,
cost: ["Lightning"]
}, {
name: {
'zh-tw': "滾動衝撞"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card