1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

74 lines
2.3 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "ブースターex",
id: "Flareon ex",
th: "บูสเตอร์ex",
'zh-tw': "火伊布ex",
'zh-cn': "火伊布ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 270,
types: ["Fire"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Fire", "Colorless"],
name: {
ja: "バーニングチャージ",
id: "Burning Charge",
th: "เบิร์นนิงชาร์จ",
'zh-tw': "燃燒充能",
'zh-cn': "燃燒充能"
},
damage: 130,
effect: {
ja: "自分の山札から基本エネルギーを2枚まで選び、自分のポケモン1匹につける。そして山札を切る。",
id: "Pilih paling banyak 2 lembar Energi Dasar dari Deck sendiri, lalu kenakan pada 1 Pokémon sendiri. Kemudian, kocok Deck.",
th: "เลือกการ์ดพลังงานพื้นฐานได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา ติดที่โปเกมอน ฝ่ายเรา 1 ตัว แล้วสับสำรับการ์ด",
'zh-tw': "從自己的牌庫選擇最多2張基本能量卡附於自己的1隻寶可夢身上。並且重洗牌庫。",
'zh-cn': "從自己的牌庫選擇最多2張基本能量卡附於自己的1隻寶可夢身上。並且重洗牌庫。"
}
}, {
cost: ["Fire", "Water", "Lightning"],
name: {
ja: "カーネリアン",
id: "Carnelian",
th: "คาร์เนเลียน",
'zh-tw': "紅玉髓",
'zh-cn': "紅玉髓"
},
damage: 280,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card