1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

55 lines
1.4 KiB
TypeScript
Raw Permalink 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "マッギョ",
'zh-tw': "泥巴魚",
'zh-cn': "泥巴魚"
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
dexId: [618],
hp: 110,
types: ["Lightning"],
description: {
ja: "干潟が すみか。 泥に 棲む 細菌に よって 電気を つくる 器官が 発達した。",
'zh-tw': "潮間帶便是牠的巢穴。 製造電的器官由於 泥裡的細菌而發達起來。",
'zh-cn': "潮間帶便是牠的巢穴。 製造電的器官由於 泥裡的細菌而發達起來。"
},
stage: "Basic",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "バチッとしびれる",
'zh-tw': "劈啪麻痺",
'zh-cn': "劈啪麻痺"
},
damage: 50,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。さらに、そのポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。再選擇1個那隻寶可夢身上附加的能量將其丟棄。",
'zh-cn': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。再選擇1個那隻寶可夢身上附加的能量將其丟棄。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card