1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +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/S12a/043.ts Normal file
View File

@@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "毒電嬰",
th: "เอเลซัน",
ja: "エレズン"
},
illustrator: "kodama",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
description: {
'zh-tw': "透過讓自身的毒素產生化學反應來發電。電力 雖然弱,卻能造成麻痺。",
th: "เอาสารพิษมาเปลี่ยนแปลงทางเคมีเพื่อผลิตไฟฟ้า พลังงานไฟฟ้านั้นอ่อนแต่ก็ทำให้รู้สึกชาได้",
ja: "毒素を 化学変化 させて 電気を 出す。 電力は 弱いが ビリビリと 痺れる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "叫聲",
th: "คำราม",
ja: "なきごえ"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢使用招式的傷害「-30」點。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนที่ได้รับท่าต่อสู้นี้ใช้ จะถูก [-30]",
ja: "次の相手の番、このワザを受けたポケモンが使うワザのダメージは「-30」される。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "小伏特",
th: "โวลต์ต่ำ",
ja: "プチボルト"
},
damage: 10,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
dexId: [848]
}
export default card