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

70
data-asia/SV/SV2a/125.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "エレブー",
'zh-tw': "電擊獸",
th: "เอเลบู",
id: "Electabuzz"
},
illustrator: "NC Empire",
rarity: "Common",
category: "Pokemon",
dexId: [125],
hp: 90,
types: ["Lightning"],
description: {
ja: "嵐が 来ると 高い 木の まわりに 集まり 雷が 落ちるのを じっと 待ち続ける。",
'zh-tw': "暴風雨來臨時,牠們會聚集在高大的樹周圍, 靜靜地一直等待落雷。",
th: "เมื่อมีพายุจะพากันไปรวมตัวบริเวณต้นไม้สูงและเฝ้ารอให้ฟ้าผ่าอย่างใจจดใจจ่อ",
id: "Ketika badai datang, Electabuzz berkumpul di sekeliling pohon tinggi dan dengan sabar terus menunggu jatuhnya petir."
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
ja: "エレキコンボ",
'zh-tw': "電氣合擊",
th: "อิเล็กทริกคอมโบ",
id: "Electric Combo"
},
damage: "10+",
effect: {
ja: "自分のベンチに「ブーバー」がいるなら、40ダメージ追加。",
'zh-tw': "若自己的備戰區有「鴨嘴火獸」則增加40點傷害。",
th: "ถ้าบนเบนช์ฝ่ายเรามี [บูเบอร์] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 40",
id: "Jika ada Magmar di Cadangan sendiri, kerusakan yang diberikan bertambah sejumlah 40."
}
}, {
cost: ["Lightning", "Colorless"],
name: {
ja: "なぐる",
'zh-tw': "打擊",
th: "ทุบตี",
id: "Memukul"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card