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

67 lines
2.1 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ピカチュウ",
'zh-tw': "皮卡丘",
th: "พิคาชู",
id: "Pikachu"
},
illustrator: "Hiroyuki Yamamoto",
category: "Pokemon",
dexId: [25],
hp: 60,
types: ["Lightning"],
description: {
ja: "両頬には 電気を 溜めこむ 袋がある。 怒ると 溜めこんだ 電気を 一気に 放ってくる。",
'zh-tw': "雙頰上有儲存電力的囊袋。一旦生氣就會把儲存的電力一口氣釋放出來。",
th: "ที่แก้มทั้งสองข้างมีถุงสำหรับเก็บไฟฟ้า พอโกรธจะปล่อยไฟฟ้าที่เก็บเอาไว้ออกมาในรวดเดียว",
id: "Pikachu memiliki kantong penampung listrik di kedua pipinya. Ketika marah, Pokémon ini mengeluarkan seluruh listrik yang telah terkumpul."
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
ja: "じゅうでん",
'zh-tw': "充電",
th: "ชาร์จ",
id: "Charge"
},
effect: {
ja: "自分の山札から「基本エネルギー」を1枚選び、このポケモンにつける。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張「基本【雷】能量」卡附於這隻寶可夢身上。並且重洗牌庫。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[สายฟ้า]] 1 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ แล้วสับสำรับการ์ด",
id: "Pilih 1 lembar Energi Dasar {Listrik} dari Deck sendiri, lalu kenakan pada Pokémon ini. Kemudian, kocok Deck."
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "ピカパンチ",
'zh-tw': "皮卡拳",
th: "พิคาพันช์",
id: "Pika Punch"
},
damage: 50
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card