1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

58 lines
1.6 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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