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

69 lines
1.9 KiB
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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "カプ・コケコ",
'zh-tw': "卡璞・鳴鳴",
'zh-cn': "卡璞・鳴鳴"
},
illustrator: "Souichirou Gunjima",
rarity: "Rare",
category: "Pokemon",
dexId: [785],
hp: 120,
types: ["Lightning"],
description: {
ja: "守り神と 呼ばれるが 気分を 害する 人間や ポケモンには 襲い掛かる 荒ぶる神 でもある。",
'zh-tw': "雖被稱為守護神,但會去 襲擊惹自己不開心的人或寶可夢, 是個性情凶悍的神。",
'zh-cn': "雖被稱為守護神,但會去 襲擊惹自己不開心的人或寶可夢, 是個性情凶悍的神。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "かみなりをよぶ",
'zh-tw': "召喚雷電",
'zh-cn': "召喚雷電"
},
effect: {
ja: "自分の山札からポケモンを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇最多2張【雷】寶可夢卡在給對手看過後加入手牌。並且重洗牌庫。",
'zh-cn': "從自己的牌庫選擇最多2張【雷】寶可夢卡在給對手看過後加入手牌。並且重洗牌庫。"
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "サイドカウンター",
'zh-tw': "獎賞反擊",
'zh-cn': "獎賞反擊"
},
damage: "90+",
effect: {
ja: "自分のサイドの残り枚数が、相手のサイドの残り枚数より多いなら、90ダメージ追加。",
'zh-tw': "若自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多則增加90點傷害。",
'zh-cn': "若自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多則增加90點傷害。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card