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

74
data-asia/SV/SV10/033.ts Normal file
View File

@ -0,0 +1,74 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>閃電鳥",
'zh-cn': "<火箭隊的>閃電鳥",
ja: "ロケット団のサンダー"
},
illustrator: "Nurikabe",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
description: {
'zh-tw': "傳說的鳥寶可夢。 據說只要牠磨蹭翅膀, 立刻就會有雷電劈下。",
'zh-cn': "傳說的鳥寶可夢。 據說只要牠磨蹭翅膀, 立刻就會有雷電劈下。",
ja: "羽根を こすり合わせると たちまち 雷が 落ちると 言われている 伝説の 鳥ポケモン。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "阻礙之翼",
'zh-cn': "阻礙之翼",
ja: "ジャミングウイング"
},
effect: {
'zh-tw': "若希望選擇1個對手的戰鬥寶可夢身上附加的能量改附於對手的備戰寶可夢身上。",
'zh-cn': "若希望選擇1個對手的戰鬥寶可夢身上附加的能量改附於對手的備戰寶可夢身上。",
ja: "のぞむなら、相手のバトルポケモンについているエネルギーを1個選び、相手のベンチポケモンにつけ替える。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "惡棍閃電",
'zh-cn': "惡棍閃電",
ja: "バッドサンダー"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有「火箭隊能量」則增加60點傷害。",
'zh-cn': "若這隻寶可夢身上附有「火箭隊能量」則增加60點傷害。",
ja: "このポケモンに「ロケット団エネルギー」がついているなら、60ダメージ追加。"
},
damage: "60",
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "I",
rarity: "Rare",
dexId: [145]
}
export default card