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

63 lines
2.1 KiB
TypeScript
Raw 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 火焰鳥V",
th: "กาลาร์ ไฟเยอร์V",
ja: "ガラル ファイヤーV"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 220,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "邪焰之翼",
th: "ปีกแห่งเปลวเพลิงดุร้าย",
ja: "じゃえんのつばさ"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的棄牌區選擇1張【惡】能量卡附於這隻寶可夢身上。在這個回合若已經使出了其他的「邪焰之翼」則這個特性無法使用。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ดพลังงาน [ความมืด] 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนนี้ ในเทิร์นนี้ ถ้าใช้ [ปีกแห่งเปลวเพลิงดุร้าย] ใบอื่นไปแล้ว จะใช้ความสามารถนี้ไม่ได้",
ja: "自分の番に1回使える。自分のトラッシュからエネルギーを1枚選び、このポケモンにつける。この番、すでに別の「じゃえんのつばさ」を使っていたなら、この特性は使えない。"
}
}],
attacks: [{
name: {
'zh-tw': "氣場烈焰",
th: "ออร่าเบิร์น",
ja: "オーラバーン"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。",
th: "โปเกมอนตัวนี้ก็จะได้รับแดเมจ 30 ด้วย",
ja: "このポケモンにも30ダメージ。"
},
damage: 190,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E",
rarity: "Double rare"
}
export default card