1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

67
data-asia/SV/SV4a/055.ts Normal file
View File

@ -0,0 +1,67 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ピカチュウ",
'zh-tw': "皮卡丘",
th: "พิคาชู",
id: "Pikachu"
},
illustrator: "OKACHEKE",
category: "Pokemon",
dexId: [25],
hp: 70,
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: ["Colorless"],
name: {
ja: "なきごえ",
'zh-tw': "叫聲",
th: "เสียงร้อง",
id: "Bersuara"
},
effect: {
ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-20」される。",
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-20」點。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้นี้ใช้จะถูก [-20]",
id: "Pada giliran lawan berikutnya, kerusakan akibat serangan yang digunakan oleh Pokémon yang menerima serangan ini berkurang sejumlah 20."
}
}, {
cost: ["Lightning", "Colorless"],
name: {
ja: "ピカボルト",
'zh-tw': "皮卡伏特",
th: "พิคาโบลต์",
id: "Pika Bolt"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card