1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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

71
data-asia/SV/SV3/041.ts Normal file
View File

@ -0,0 +1,71 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ハラバリー",
'zh-tw': "電肚蛙",
th: "ฮาราบารี"
},
illustrator: "Toshinao Aoki",
rarity: "Uncommon",
category: "Pokemon",
dexId: [939],
hp: 140,
types: ["Lightning"],
description: {
ja: "ブヨンブヨンの 体を 伸び縮み させると お腹の へそダイナモが 大電力を 発生させる。",
'zh-tw': "只要伸縮肥嘟嘟的身體,就能讓肚子上的發電臍產生大量的電氣。",
th: "เมื่อยืดและหดร่างกายที่ยืดหยุ่น สะดือไดนาโมตรงท้องจะผลิตพลังงานไฟฟ้าจำนวนมากออกมา"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "ぜつえんたい",
'zh-tw': "絕緣體",
th: "ฉนวนไฟฟ้า"
},
effect: {
ja: "このポケモンは、相手のポケモンからワザのダメージを受けない。",
'zh-tw': "這隻寶可夢不會受到對手的【雷】寶可夢招式的傷害。",
th: "โปเกมอนนี้ จะไม่ได้รับแดเมจของท่าต่อสู้จากโปเกมอน[สายฟ้า]ฝ่ายตรงข้าม"
}
}],
attacks: [{
cost: ["Lightning", "Colorless", "Colorless"],
name: {
ja: "サンダーエッジ",
'zh-tw': "雷電刀鋒",
th: "ธันเดอร์เอดจ์"
},
damage: 100,
effect: {
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。",
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。",
th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card