1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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

54
data-asia/S/S12/024.ts Normal file
View File

@ -0,0 +1,54 @@
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