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

51 lines
874 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 "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "酋雷姆VMAX"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 330,
types: ["Water"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "白銀世界"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將自己的牌庫上方1張卡丟棄若那張卡為【水】能量卡則附於自己的寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "極巨冰霜"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的任意數量的【水】能量卡丟棄增加其張數×50點傷害。"
},
damage: "120+",
cost: ["Water", "Water", "Water"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card