1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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

61
data-asia/S/S12/034.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉艾勒奇VMAX",
th: "เรจิเอเลคิVMAX",
ja: "レジエレキVMAX"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 310,
types: ["Lightning"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "電晶體",
th: "ทรานซิสเตอร์",
ja: "トランジスタ"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的【雷】屬性的【基礎】寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+30」點。",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่ แดเมจของท่าต่อสู้ที่โปเกมอน[พื้นฐาน]ประเภท[สายฟ้า]ฝ่ายเราใช้ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม จะถูก [+30]",
ja: "このポケモンがいるかぎり、自分のタイプのたねポケモンが使うワザの、相手のバトルポケモンへのダメージは「+30」される。"
}
}],
attacks: [{
name: {
'zh-tw': "極巨雷電",
th: "ไดทันเดอร์ไลท์นิง",
ja: "ダイライデン"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
ja: "次の自分の番、このポケモンはワザが使えない。"
},
damage: 220,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "F"
}
export default card