1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

61
data-asia/S/SP6/003.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SP6"
const card: Card = {
set: Set,
name: {
'zh-tw': "蒼響V",
ja: "ザシアンV"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 220,
types: ["Metal"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "打穿",
ja: "ぶちぬく"
},
effect: {
'zh-tw': "這個招式的傷害不計算弱點・抵抗力、對手的戰鬥寶可夢身上的附加效果。",
ja: "このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。"
},
damage: 40,
cost: ["Metal"]
}, {
name: {
'zh-tw': "巨獸斬",
ja: "きょじゅうざん"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【VMAX】」則增加160點傷害。",
ja: "相手のバトルポケモンが「ポケモンVMAX」なら、160ダメージ追加。"
},
damage: "100",
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
regulationMark: "F"
}
export default card