1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 04:41:57 +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

63
data-asia/SV/SV10/020.ts Normal file
View File

@@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "火焰雞",
'zh-cn': "火焰雞",
ja: "バシャーモ"
},
illustrator: "Kazumasa Yasukuni",
category: "Pokemon",
hp: 170,
types: ["Fire"],
description: {
'zh-tw': "遇到強敵時會從手腕噴出火焰。 有著能夠躍過大樓的腳力。",
'zh-cn': "遇到強敵時會從手腕噴出火焰。 有著能夠躍過大樓的腳力。",
ja: "強敵に 出会うと 手首から 炎を 噴き出す。 ジャンプで ビルを 跳び越す 脚力。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "高溫爆破",
'zh-cn': "高溫爆破",
ja: "ヒートブラスト"
},
damage: 70,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "業火連踢",
'zh-cn': "業火連踢",
ja: "ごうかれんきゃく"
},
effect: {
'zh-tw': "將2個這隻寶可夢身上附加的能量丟棄對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]",
'zh-cn': "將2個這隻寶可夢身上附加的能量丟棄對手的1隻備戰寶可夢也受到120點傷害。[在備戰區不計算弱點・抵抗力。]",
ja: "このポケモンについているエネルギーを2個トラッシュし、相手のベンチポケモン1匹にも、120ダメージ。ベンチは弱点・抵抗力を計算しない。"
},
damage: 120,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "I",
rarity: "Rare",
dexId: [257]
}
export default card