1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

63 lines
1.5 KiB
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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "戽斗尖梭",
'zh-cn': "戽斗尖梭",
ja: "カマスジョー"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "會旋轉尾鰭猛然跳起, 然後以強勁的力道咬住 飛在水面附近的長翅鷗。",
'zh-cn': "會旋轉尾鰭猛然跳起, 然後以強勁的力道咬住 飛在水面附近的長翅鷗。",
ja: "尾びれを 回転させ 勢いよく 跳びあがり 水面 近くを 飛ぶ キャモメに 激しく 食らいつく。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "銳利鰭",
'zh-cn': "銳利鰭",
ja: "するどいひれ"
},
damage: 40,
cost: ["Water"]
}, {
name: {
'zh-tw': "潛水",
'zh-cn': "潛水",
ja: "ダイビング"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。",
'zh-cn': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。",
ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージや効果を受けない。"
},
damage: 60,
cost: ["Water", "Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Uncommon",
dexId: [847]
}
export default card