1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

64
data-asia/SV/SV10/036.ts Normal file
View File

@ -0,0 +1,64 @@
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