1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

69 lines
2.4 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "バルビート",
'zh-tw': "電螢蟲",
th: "บารูบีท"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Orca",
dexId: [313],
hp: 70,
types: ["Grass"],
description: {
ja: "お尻の 光を 点滅させて 仲間と 会話する。 イルミーゼの 出す 甘い 香りが 大好き。",
'zh-tw': "會閃爍臀部的光芒 來與夥伴交流。最喜歡 甜甜螢放出的甜甜香氣。",
th: "กะพริบแสงที่ก้นเพื่อสื่อสารกับพวกพ้อง ชอบกลิ่นหอมหวานที่อิลูมิเซะปล่อยออกมามาก"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ファストサイン",
'zh-tw': "急速信號",
th: "เฟิสต์ไซน์"
},
effect: {
ja: "このワザは、先攻プレイヤーの最初の番でも使える。自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。",
'zh-tw': "這個招式可在先攻玩家的最初回合使用。從自己的牌庫選擇最多2張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "ท่าต่อสู้นี้ แม้ในเทิร์นแรกสุดของผู้เล่นฝ่ายเริ่มก่อนก็สามารถใช้ได้ เลือกการ์ดโปเกมอน[พื้นฐาน]ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "れんけいアタック",
'zh-tw': "聯合攻擊",
th: "ผสานบุกประจัญบาน"
},
damage: "20+",
effect: {
ja: "自分のベンチに「イルミーゼ」がいるなら、60ダメージ追加。",
'zh-tw': "若自己的備戰區有「甜甜螢」則增加60點傷害。",
th: "ถ้าบนเบนช์ฝ่ายเรามี [อิลูมิเซะ] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 60"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card