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

55 lines
1.6 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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "シードラ",
'zh-tw': "海刺龍",
th: "ซีดรา"
},
illustrator: "otumami",
rarity: "Common",
category: "Pokemon",
dexId: [117],
hp: 90,
types: ["Water"],
description: {
ja: "細い 口だが 吸引力は 強い。 口より 大きな エサも 一瞬で 吸いこみ 食べるぞ。",
'zh-tw': "嘴部雖然細,但吸力卻很強。就算是比嘴還要大的食物, 也都能瞬間吸進口裡吃掉。",
th: "ถึงแม้ปากจะเรียวเล็กแต่มีพลังดูดสูง ไม่ว่าจะเป็นเหยื่อที่มีขนาดใหญ่กว่าปากของตนก็สามารถดูดเข้าไปกินได้ภายในชั่วพริบตา"
},
stage: "Stage1",
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "バブルこうせん",
'zh-tw': "泡沫光線",
th: "บับเบิลบีม"
},
damage: 50,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card