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

54 lines
1.7 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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮卡丘",
th: "พิคาชู",
ja: "ピカチュウ"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
description: {
'zh-tw': "越是能製造出強大電流的皮卡丘,臉頰上的囊就越 柔軟,同時也越有伸展性。",
th: "ยิ่งไฟฟ้าที่พิคาชูผลิตมีความรุนแรงมากเท่าไร กระพุ้งแก้มก็ยิ่งนิ่มและยืดได้มากขึ้นเท่านั้น",
ja: "つくる 電気が 強力な ピカチュウほど ほっぺの 袋は 軟らかく よく 伸びるぞ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "皮卡強襲",
th: "พิคาสไตรค์",
ja: "ピカストライク"
},
effect: {
'zh-tw': "在上個自己的回合若自己的「咚咚鼠」使出了「咚咚短路」則增加180點傷害。",
th: "เทิร์นก่อนของฝ่ายเรา ถ้า [เดเด็นเนะ] ฝ่ายเราใช้ [เดเดช็อต] ไปแล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 180",
ja: "前の自分の番、自分の「デデンネ」が「デデショート」を使っていたなら、180ダメージ追加。"
},
damage: "20",
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [25]
}
export default card