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

55 lines
1.6 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ズピカ",
'zh-tw': "光蚪仔",
th: "ซุพีคา"
},
illustrator: "Shin Nagasawa",
rarity: "Common",
category: "Pokemon",
dexId: [938],
hp: 60,
types: ["Lightning"],
description: {
ja: "尻尾を 振って 発電する。 危険を 感じると 頭を 点滅させて 仲間に 伝える。",
'zh-tw': "會搖尾巴來發電。感覺到有危險時,會閃爍頭部通知夥伴。",
th: "แกว่งหางเพื่อผลิตไฟฟ้า เมื่อรู้สึกถึงอันตรายจะทำให้ไฟบนหัวกะพริบเพื่อแจ้งพวกพ้อง"
},
stage: "Basic",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "ふりふりほうでん",
'zh-tw': "輕輕放電",
th: "กวัดแกว่งคายประจุ"
},
damage: 20,
effect: {
ja: "相手のベンチポケモン1匹にも、10ダメージ。ベンチは弱点・抵抗力を計算しない。",
'zh-tw': "對手的1隻備戰寶可夢也受到10點傷害。[在備戰區不計算弱點・抵抗力。]",
th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 10 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card