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

50 lines
747 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 "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "卡璞・鳴鳴"
},
illustrator: "Hasuno",
category: "Pokemon",
hp: 110,
types: ["Lightning"],
description: {
'zh-tw': "擁有旺盛的好奇心,是美樂美樂的守護神。會呼喚雷雨雲,把雷儲存在體內。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "吸引"
},
effect: {
'zh-tw': "從自己的牌庫抽出2張卡。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "雷電球"
},
damage: 110,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "D"
}
export default card