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

54 lines
925 B
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 "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉艾斯"
},
illustrator: "aoki",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "能操控降至零下200度的寒氣,將靠近牠的東西 都在一瞬間就冰封起來。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "雷吉之門"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "暴雪制約"
},
effect: {
'zh-tw': "在下個對手的回合受到這個招式的「寶可夢【V】」無法使用招式。"
},
damage: 100,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card