mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
63
data-asia/SV/SV4a/323.ts
Normal file
63
data-asia/SV/SV4a/323.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "クエスパトラex",
|
||||
'zh-tw': "超能豔鴕ex",
|
||||
id: "Espathra ex"
|
||||
},
|
||||
|
||||
illustrator: "takuyoa",
|
||||
category: "Pokemon",
|
||||
hp: 260,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
ja: "まばゆいしせん",
|
||||
'zh-tw': "奪目視線",
|
||||
id: "Pandangan Menyilaukan"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンがバトル場にいるかぎり、相手のバトルポケモンは、ワザを使うためのエネルギーが、エネルギー1個ぶん多くなる。",
|
||||
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手的戰鬥寶可夢使用招式所需的能量增加1個【無】能量。",
|
||||
id: "Selama Pokémon ini ada di Arena Bertarung, Energi yang dibutuhkan oleh Pokémon Bertarung lawan untuk menggunakan serangan bertambah 1 Energi {Bening}."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
ja: "サイコボール",
|
||||
'zh-tw': "精神球",
|
||||
id: "Psychoball"
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
|
||||
effect: {
|
||||
ja: "おたがいのバトルポケモンについているエネルギーの数×30ダメージ追加。",
|
||||
'zh-tw': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。",
|
||||
id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon Bertarung kedua pemain."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user