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

49 lines
771 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: "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