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

58
data-asia/S/S12/075.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "基格爾德",
th: "ซีการ์ด",
ja: "ジガルデ"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 90,
types: ["Dragon"],
description: {
'zh-tw': "各地的基格爾德・細胞聚集了10%之後所誕生。 擅長近距離戰鬥。",
th: "เกิดขึ้นมาจากซีการ์ดเซล แต่ละที่มารวมตัวกัน 10 ถนัดการต่อสู้ระยะประชิด",
ja: "各地の ジガルデ・セルが 集まったとき 生まれる。 接近戦が 得意だぞ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "力之吶喊",
th: "เสียงตะโกนแห่งพลัง",
ja: "ちからのさけび"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張基本能量卡附於備戰寶可夢身上。",
th: "เลือกการ์ดพลังงานพื้นฐาน 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนบนเบนช์",
ja: "自分のトラッシュから基本エネルギーを1枚選び、ベンチポケモンにつける。"
},
damage: 20,
cost: ["Grass"]
}, {
name: {
'zh-tw': "高速攻擊",
th: "สปีดแอทแทก",
ja: "スピードアタック"
},
damage: 70,
cost: ["Grass", "Fighting"]
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [718]
}
export default card