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

54 lines
845 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 "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "藏飽栗鼠"
},
illustrator: "sui",
category: "Pokemon",
hp: 130,
types: ["Colorless"],
description: {
'zh-tw': "在尾巴裡囤積樹果。雖然囤過頭了就會掉出來, 但遲鈍的牠不會發現。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "呼喚"
},
effect: {
'zh-tw': "從自己的牌庫抽出2張卡。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "傾瀉"
},
effect: {
'zh-tw': "將自己的手牌全部丟棄若丟棄的張數為5張以上則增加150點傷害。"
},
damage: "60+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card