mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
55 lines
1.1 KiB
TypeScript
55 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SCA"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "麻麻鰻魚王"
|
||
},
|
||
|
||
illustrator: "tetsuya koizumi",
|
||
category: "Pokemon",
|
||
hp: 160,
|
||
types: ["Lightning"],
|
||
|
||
description: {
|
||
'zh-tw': "用手臂的力量從大海裡爬出,襲擊水邊的獵物。會瞬間將獵物拖入海中。"
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "麻痺齒型"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在下個對手的回合,若對手從手牌將能量卡附於受到這個招式的寶可夢身上,則在那隻寶可夢身上放置6個傷害指示物。"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Lightning"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "電擊灑水器"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "自己的1隻備戰寶可夢也受到30點傷害。對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Lightning", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |