1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 03:09:49 +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

64
data-asia/SV/SV4a/200.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ユキノオー",
'zh-tw': "暴雪王",
id: "Abomasnow"
},
illustrator: "Hitoshi Ariga",
category: "Pokemon",
dexId: [460],
hp: 150,
types: ["Grass"],
description: {
ja: "万年雪が 積もる 山脈で 静かに 暮らす。 ブリザードを 発生させて 姿を 隠す。",
'zh-tw': "在萬年積雪的山脈靜靜生活。會引發 暴風雪來隱藏自己。",
id: "Abomasnow tinggal di pegunungan yang diselimuti oleh salju abadi. Pokémon ini menciptakan badai salju untuk menyembunyikan wujudnya."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "いてつくわざわい",
'zh-tw': "嚴寒降災",
id: "Malapetaka Pembeku"
},
effect: {
ja: "このポケモンがいるかぎり、おたがいのポケモン全員のHPは、回復しない。",
'zh-tw': "只要這隻寶可夢在場上雙方的所有寶可夢的HP無法恢復。",
id: "Selama Pokémon ini ada di Arena, HP semua Pokémon kedua pemain tidak dapat dipulihkan."
}
}],
attacks: [{
cost: ["Grass", "Grass", "Colorless"],
name: {
ja: "マグナムパンチ",
'zh-tw': "增量拳",
id: "Magnum Punch"
},
damage: 110
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card