1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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/SV4a/254.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ユンゲラー",
'zh-tw': "勇基拉",
id: "Kadabra"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
dexId: [64],
hp: 80,
types: ["Psychic"],
description: {
ja: "念力の 威力は 絶大。 進化に 備えて 額の 星に サイコパワーを 蓄えている。",
'zh-tw': "念力的威力大得驚人。會把精神力量儲存在額頭 的星星裡,以備進化所需。",
id: "Kekuatan telekinesis Kadabra sangat kuat. Pokémon ini bersiap untuk berevolusi dengan menghimpun kekuatan psikokinesis pada bintang di dahinya."
},
stage: "Stage1",
attacks: [{
cost: ["Psychic"],
name: {
ja: "テレポートアタック",
'zh-tw': "瞬間移動攻擊",
id: "Teleport Attack"
},
damage: 30,
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。",
id: "Tukar Pokémon ini dengan Pokémon Cadangan."
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card