mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
50
data-asia/S/S9/022.ts
Normal file
50
data-asia/S/S9/022.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "拉普拉斯",
|
||||
ja: "ラプラス"
|
||||
},
|
||||
|
||||
illustrator: "Teeziro",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "頭腦聰慧,心地善良的寶可夢。會一邊以優美的聲音歌唱, 一邊暢游在大海之上。",
|
||||
ja: "賢く 心優しい ポケモン。 きれいな 歌声を 響かせながら 海の上を 泳いで いく。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "激狂冰凍",
|
||||
ja: "レイジングフリーズ"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若在上個對手的回合,自己的寶可夢因招式的傷害而【氣絕】了,則將對手的戰鬥寶可夢【麻痺】。",
|
||||
ja: "前の相手の番に、ワザのダメージで、自分のポケモンがきぜつしていたなら、相手のバトルポケモンをマヒにする。"
|
||||
},
|
||||
|
||||
damage: 110,
|
||||
cost: ["Water", "Water", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
rarity: "Uncommon",
|
||||
dexId: [131]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user