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

46 lines
679 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': "酋雷姆V"
},
illustrator: "takuyoa",
category: "Pokemon",
hp: 220,
types: ["Water"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "急遽冰凍"
},
effect: {
'zh-tw': "從自己的手牌選擇任意數量的【水】能量卡,以任意方式附於自己的寶可夢身上。"
},
cost: ["Water"]
}, {
name: {
'zh-tw': "冰霜粉碎"
},
damage: 140,
cost: ["Water", "Water", "Water"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card