1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

67 lines
1.9 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "タイカイデン",
'zh-tw': "大電海燕",
id: "Kilowattrel"
},
illustrator: "Nisota Niso",
category: "Pokemon",
dexId: [941],
hp: 120,
types: ["Lightning"],
description: {
ja: "のど袋を ふくらませて 電気を 増幅させる。 風に 乗って 1日で 700キロを 飛行する。",
'zh-tw': "會膨脹喉囊來增強電力。可以乘著風在1天內 就飛上700公里。",
id: "Kilowattrel menggembungkan kantong tenggorokannya dan menambahkan daya listriknya. Pokémon ini menaiki angin dan terbang sejauh 700 km dalam sehari."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "だんけつサンダー",
'zh-tw': "團結閃電",
id: "Guntur Bersatu Padu"
},
effect: {
ja: "相手のベンチポケモン1匹に、自分のトラッシュにある、ワザ「だんけつのつばさ」を持つポケモンの枚数×10ダメージ。ベンチは弱点・抵抗力を計算しない。",
'zh-tw': "對手的1隻備戰寶可夢受到自己的棄牌區的持有「團結之翼」招式的寶可夢卡的張數×10點傷害。[在備戰區不計算弱點・抵抗力。]",
id: "Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lembar Pokémon yang memiliki serangan Sayap Bersatu Padu yang ada di Trash sendiri kepada 1 Pokémon Cadangan lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
}
}, {
cost: ["Lightning", "Colorless", "Colorless"],
name: {
ja: "スピードウイング",
'zh-tw': "高速之翼",
id: "Speed Wing"
},
damage: 90
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "G"
}
export default card