1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

57 lines
974 B
TypeScript
Raw Permalink 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 "../SVEL"
const card: Card = {
set: Set,
name: {
'zh-tw': "骨紋巨聲鱷ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 330,
types: ["Metal"],
stage: "Stage2",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "爆熱高歌"
},
effect: {
'zh-tw': "在自己的回合若從自己的手牌將1張「基本【火】能量」卡丟棄則可使用1次。在這個回合自己的寶可夢使用的招式對對手的戰鬥寶可夢造成的傷害「+60」點。"
}
}],
attacks: [{
name: {
'zh-tw': "潔淨灼燒"
},
effect: {
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。"
},
damage: 160,
cost: ["Fire", "Fire"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card