mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
49 lines
771 B
TypeScript
49 lines
771 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S10D"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "三合一磁怪"
|
||
},
|
||
|
||
illustrator: "Saya Tsuruta",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
'zh-tw': "由3隻小磁怪連結而成。會發射出強烈的電波 來觀測周圍的狀況。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "彈回"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Metal", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "F"
|
||
}
|
||
|
||
export default card |