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

61
data-asia/S/S5I/016.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S5I"
const card: Card = {
set: Set,
name: {
'zh-tw': "電擊魔獸",
th: "เอเลคิเบิล"
},
illustrator: "Megumi Higuchi",
category: "Pokemon",
hp: 140,
types: ["Lightning"],
description: {
'zh-tw': "只要1隻電擊魔獸就能提供整座大都市所有建築物一整年所需的電力。",
th: "เอเลคิเบิล 1 ตัวสามารถจ่ายไฟฟ้าสำหรับทุกตึกในเมืองใหญ่ได้พอถึง 1 ปีทีเดียว"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "回轉攻擊",
th: "โรลลิ่งแอทแทค"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加30點傷害。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 30"
},
damage: "60+",
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "閃電上投",
th: "ขว้างฟ้าแลบ"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「閃電上投」。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [ขว้างฟ้าแลบ] ไม่ได้"
},
damage: 180,
cost: ["Lightning", "Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card