1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15: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

59
data-asia/SV/SV6/065.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "オーガポン いしずえのめんex",
'zh-tw': "厄鬼椪 礎石面具ex"
},
category: "Pokemon",
rarity: "Double rare",
illustrator: "5ban Graphics",
hp: 210,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "いしずえのかまえ",
'zh-tw': "礎石之勢"
},
effect: {
ja: "このポケモンは、相手の特性を持つポケモンからワザのダメージを受けない。",
'zh-tw': "這隻寶可夢不會受到對手的擁有特性的寶可夢招式的傷害。"
}
}],
attacks: [{
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "ぶちやぶる",
'zh-tw': "打爆"
},
damage: 140,
effect: {
ja: "このワザのダメージは、弱点・抵抗力と、相手のバトルポケモンにかかっている効果を計算しない。",
'zh-tw': "這個招式的傷害不計算弱點・抵抗力與對手的戰鬥寶可夢身上的附加效果。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card