mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
47 lines
685 B
TypeScript
47 lines
685 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SVD"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "三合一磁怪"
|
||
},
|
||
|
||
illustrator: "kurumitsu",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Lightning"],
|
||
|
||
description: {
|
||
'zh-tw': "3隻小磁怪因著強烈的磁力而結合。只要靠近牠 就會發生強烈的耳鳴。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "撞擊"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Lightning"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "電球"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Lightning", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |