1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

49 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "拉普拉斯",
ja: "ラプラス"
},
illustrator: "zig",
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",
dexId: [131]
}
export default card