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

44 lines
679 B
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 "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "雙刃丸"
},
illustrator: "Mina Nakai",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "或許是拜平日的鍛鍊所賜, 運用兩枚扇貝貝刀的高超技術 能令劍豪也甘拜下風。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "硬殼利刃"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加20點傷害。"
},
damage: "20+",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card