1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

74 lines
2.1 KiB
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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "サンダー",
'zh-tw': "閃電鳥",
th: "ธันเดอร์"
},
illustrator: "GOSSAN",
rarity: "Rare",
category: "Pokemon",
dexId: [145],
hp: 120,
types: ["Lightning"],
description: {
ja: "電気を 自在に 操る。 真っ黒な 雷雲の 中に 巣があると 言い伝えられている。",
'zh-tw': "能夠自在地操縱雷電。相傳牠的巢穴就在 烏黑的雷雲之中。",
th: "ควบคุมไฟฟ้าได้ดั่งใจนึก เป็นที่เล่าขานกันว่าภายในเมฆฝนฟ้าคะนองสีดำสนิทนั้นมีรังของมันอยู่"
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
ja: "でんじは",
'zh-tw': "電磁波",
th: "คลื่นแม่เหล็กไฟฟ้า"
},
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]"
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "10まんボルト",
'zh-tw': "十萬伏特",
th: "หนึ่งแสนโวลต์"
},
damage: 190,
effect: {
ja: "このポケモンについているエネルギーを、すべてトラッシュする。",
'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄。",
th: "ทิ้งพลังงานที่ติดอยู่กับโปเกมอนนี้ ทั้งหมดที่ตำแหน่งทิ้งการ์ด"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "H"
}
export default card