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

62 lines
1.3 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 "../SN"
const card: Card = {
set: Set,
name: {
'zh-tw': "逐電犬",
ja: "パルスワン"
},
illustrator: "chibi",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
description: {
'zh-tw': "電力增強了牠的腳力。當以最高速度奔跑時, 時速可以輕易超過90公里。",
ja: "電気の 力で 脚力を 増強。 トップスピードは 時速 90キロを 軽く 超える。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "窮追不捨",
ja: "おいつめる"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。"
},
damage: 30,
cost: ["Lightning"]
}, {
name: {
'zh-tw': "不服輸電光",
ja: "まけんきスパーク"
},
effect: {
'zh-tw': "若這隻寶可夢身上放置有傷害指示物則這個招式只需要1個【雷】能量即可使用。",
ja: "このワザは、このポケモンにダメカンがのっているなら、エネルギー1個で使える。"
},
damage: 130,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
dexId: [836]
}
export default card