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

63
data-asia/S/S9/027.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "帝王拿波",
ja: "エンペルト"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 160,
types: ["Water"],
description: {
'zh-tw': "從鳥嘴延伸出的3隻角是實力的象徵。 領袖的角是最大的。",
ja: "クチバシから 伸びている 3本の ツノは 強さの 象徴。 リーダーが 一番 大きい。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "緊急浮上",
ja: "きんきゅうふじょう"
},
effect: {
'zh-tw': "在自己的回合若這張卡在棄牌區自己1張手牌都沒有則可使用1次。將這張卡放置於備戰區。然後從自己的牌庫抽出3張卡。",
ja: "自分の番に、このカードがトラッシュにあり、自分の手札が1枚もないなら、1回使える。このカードをベンチに出す。その後、自分の山札を3枚引く。"
}
}],
attacks: [{
name: {
'zh-tw': "水箭",
ja: "ウォーターアロー"
},
effect: {
'zh-tw': "對手的1隻寶可夢受到60點傷害。[在備戰區不計算弱點・抵抗力。]",
ja: "相手のポケモン1匹に、60ダメージ。ベンチは弱点・抵抗力を計算しない。"
},
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Rare",
dexId: [395]
}
export default card