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

64 lines
1.9 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: "Shiburingaru",
category: "Pokemon",
hp: 140,
types: ["Lightning"],
description: {
'zh-tw': "尾巴的亮光能傳得很遠, 一直以來都被當成篝火, 受到人們的重視。",
'zh-cn': "尾巴的亮光能傳得很遠, 一直以來都被當成篝火, 受到人們的重視。",
ja: "尻尾の 灯りは 遠くまで 届くので 昔より かがり火として 大事に されている。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "黑暗脈衝",
'zh-cn': "黑暗脈衝",
ja: "ダークインパルス"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上每次對手從手牌使出寶可夢完成進化時在那隻寶可夢身上放置4個傷害指示物。無論有多少隻擁有這個特性的寶可夢這個效果也不會重複。",
'zh-cn': "只要這隻寶可夢在場上每次對手從手牌使出寶可夢完成進化時在那隻寶可夢身上放置4個傷害指示物。無論有多少隻擁有這個特性的寶可夢這個效果也不會重複。",
ja: "このポケモンがいるかぎり、相手が手札からポケモンを出して進化させるたび、そのポケモンにダメカンを4個のせる。この効果は、この特性を持つポケモンが何匹いても、重ならない。"
}
}],
attacks: [{
name: {
'zh-tw': "伏特頭擊",
'zh-cn': "伏特頭擊",
ja: "ヘッドボルト"
},
damage: 140,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "I",
rarity: "Uncommon",
dexId: [181]
}
export default card