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

55 lines
789 B
TypeScript
Raw Permalink 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 "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "謝米"
},
illustrator: "Megumi Mizutani",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
stage: "Basic",
attacks: [{
name: {
'zh-tw': "報恩"
},
effect: {
'zh-tw': "若希望從牌庫抽卡直到自己的手牌滿6張為止。"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "天空迴旋"
},
effect: {
'zh-tw': "將這隻寶可夢與附加的卡,全部放回手牌。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card