1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

62 lines
1.3 KiB
TypeScript
Raw Permalink 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 "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "闇黑酋雷姆ex",
'zh-cn': "闇黑酋雷姆ex",
ja: "ブラックキュレムex"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 230,
types: ["Water"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "冰河期",
'zh-cn': "冰河期",
ja: "アイスエイジ"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢為【龍】寶可夢,則將那隻寶可夢【麻痺】。",
'zh-cn': "若對手的戰鬥寶可夢為【龍】寶可夢,則將那隻寶可夢【麻痺】。",
ja: "相手のバトルポケモンがポケモンなら、そのポケモンをマヒにする。"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "闇黑冰霜",
'zh-cn': "闇黑冰霜",
ja: "ブラックフロスト"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。",
'zh-cn': "這隻寶可夢也受到30點傷害。",
ja: "このポケモンにも30ダメージ。"
},
damage: 250,
cost: ["Water", "Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "H",
rarity: "Double rare"
}
export default card