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

45 lines
665 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 "../SCD"
const card: Card = {
set: Set,
name: {
'zh-tw': "冰砌鵝"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 120,
types: ["Water"],
stage: "Basic",
attacks: [{
name: {
'zh-tw': "冰紅利"
},
effect: {
'zh-tw': "從自己的手牌選擇1張【水】能量卡將其丟棄。然後從自己的牌庫抽出3張卡。"
},
cost: ["Water"]
}, {
name: {
'zh-tw': "魯莽頭擊"
},
damage: 100,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card