mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
51 lines
749 B
TypeScript
51 lines
749 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SC2b"
|
||
|
||
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
|