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

50 lines
775 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "浮潛鼬"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "膨脹起浮囊後就能讓人坐在自己背上。 排出浮囊的氣來潛水。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "漩渦尾"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢與附加的卡全部放回對手的手牌。"
},
cost: ["Water"]
}, {
name: {
'zh-tw': "攀瀑"
},
damage: 60,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card