1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

57
data-asia/SV/SVEL/008.ts Normal file
View File

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