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

54 lines
1.1 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 "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "燈籠魚",
'zh-cn': "燈籠魚",
ja: "チョンチー"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
description: {
'zh-tw': "會從2根觸手的前端 釋放正負電流來麻痺對手。",
'zh-cn': "會從2根觸手的前端 釋放正負電流來麻痺對手。",
ja: "2つの 触手の 先から プラスと マイナスの 電気を 流して 相手を しびれさせる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "雙重伏特",
'zh-cn': "雙重伏特",
ja: "ダブルボルト"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×20點傷害。",
'zh-cn': "擲2次硬幣造成正面出現的次數×20點傷害。",
ja: "コインを2回投げ、オモテの数×20ダメージ。"
},
damage: "20×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H",
rarity: "Common",
dexId: [170]
}
export default card