1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

69 lines
1.8 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "ラウドボーンex",
'zh-tw': "骨紋巨聲鱷ex",
th: "ลาวด์โบนex",
id: "Skeledirge ex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 340,
types: ["Fire"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Fire"],
name: {
ja: "かつりょくのうた",
'zh-tw': "活力之歌",
th: "บทเพลงเปี่ยมพลัง",
id: "Lagu Vitalitas"
},
damage: 50,
effect: {
ja: "自分のポケモン全員のHPを、それぞれ「30」回復する。",
'zh-tw': "將自己的所有寶可夢各恢復「30」HP。",
th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเราทุกตัว ตัวละ [30]",
id: "Pulihkan HP semua Pokémon sendiri masing-masing sejumlah 30."
}
}, {
cost: ["Fire", "Fire"],
name: {
ja: "バーニングボイス",
'zh-tw': "燃燒之聲",
th: "เบิร์นนิงวอยซ์",
id: "Burning Voice"
},
damage: "270-",
effect: {
ja: "このポケモンにのっているダメカンの数×10ダメージぶん、このワザのダメージは小さくなる。",
'zh-tw': "減少這隻寶可夢身上放置的傷害指示物的數量×10點傷害。",
th: "แดเมจของท่าต่อสู้นี้จะลดลง ตามจำนวนตัวนับแดเมจที่วางอยู่บนโปเกมอนนี้ x10",
id: "Kerusakan akibat serangan ini berkurang sejumlah 10 untuk tiap Token Kerusakan yang dimiliki Pokémon ini."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card