mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Update asian sets (#554)
This commit is contained in:
61
data-asia/SV/SV7/116.ts
Normal file
61
data-asia/SV/SV7/116.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV7"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "閃焰王牌ex",
|
||||
'zh-cn': "閃焰王牌ex",
|
||||
ja: "エースバーンex"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 320,
|
||||
types: ["Fire"],
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "閃焰強襲",
|
||||
'zh-cn': "閃焰強襲",
|
||||
ja: "フレアストライク"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「閃焰強襲」。",
|
||||
'zh-cn': "在下個自己的回合,這隻寶可夢無法使用「閃焰強襲」。",
|
||||
ja: "次の自分の番、このポケモンは「フレアストライク」が使えない。"
|
||||
},
|
||||
|
||||
damage: 280,
|
||||
cost: ["Fire", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "石榴石截擊",
|
||||
'zh-cn': "石榴石截擊",
|
||||
ja: "ガーネットボレー"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的1隻寶可夢受到180點傷害。[在備戰區不計算弱點・抵抗力。]",
|
||||
'zh-cn': "對手的1隻寶可夢受到180點傷害。[在備戰區不計算弱點・抵抗力。]",
|
||||
ja: "相手のポケモン1匹に、180ダメージ。[ベンチは弱点・抵抗力を計算しない。]"
|
||||
},
|
||||
|
||||
cost: ["Fire", "Fighting", "Darkness"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "H",
|
||||
rarity: "None"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user