mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
68
data-asia/SV/SV4a/328.ts
Normal file
68
data-asia/SV/SV4a/328.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "サーナイトex",
|
||||
'zh-tw': "沙奈朵ex",
|
||||
id: "Gardevoir ex"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 310,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
ja: "サイコエンブレイス",
|
||||
'zh-tw': "精神擁抱",
|
||||
id: "Psychoembrace"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分の番に何回でも使える。自分のトラッシュから「基本エネルギー」を1枚選び、自分のポケモンにつける。その後、つけたポケモンにダメカンを2個のせる。(きぜつするポケモンに、この特性は使えない。)",
|
||||
'zh-tw': "在自己的回合時,可不限次數使用。從自己的棄牌區選擇1張「基本【超】能量」卡,附於自己的【超】寶可夢身上。然後,在附上那張卡的寶可夢身上放置2個傷害指示物。(這個特性無法對會【昏厥】的寶可夢使用。)",
|
||||
id: "Dapat digunakan berkali-kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Psychic} dari Trash sendiri, lalu kenakan pada Pokémon {Psychic} sendiri. Setelah itu, letakkan 2 Token Kerusakan pada Pokémon yang telah dikenakan Energi tersebut. (Ability ini tidak dapat digunakan pada Pokémon yang akan KO akibat Ability ini.)"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ミラクルフォース",
|
||||
'zh-tw': "奇跡之力",
|
||||
id: "Miracle Force"
|
||||
},
|
||||
|
||||
damage: 190,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンの特殊状態を、すべて回復する。",
|
||||
'zh-tw': "將這隻寶可夢的特殊狀態全部恢復。",
|
||||
id: "Pulihkan semua Kondisi Khusus yang dialami Pokémon ini."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user