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

63 lines
1.3 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ラウドボーンex",
'zh-tw': "骨紋巨聲鱷ex",
id: "Skeledirge ex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 340,
types: ["Fire"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Fire"],
name: {
ja: "かつりょくのうた",
'zh-tw': "活力之歌",
id: "Lagu Vitalitas"
},
damage: 50,
effect: {
ja: "自分のポケモン全員のHPを、それぞれ「30」回復する。",
'zh-tw': "將自己的所有寶可夢各恢復「30」HP。",
id: "Pulihkan HP semua Pokémon sendiri masing-masing sejumlah 30."
}
}, {
cost: ["Fire", "Fire"],
name: {
ja: "バーニングボイス",
'zh-tw': "燃燒之聲",
id: "Burning Voice"
},
damage: "270-",
effect: {
ja: "このポケモンにのっているダメカンの数×10ダメージぶん、このワザのダメージは小さくなる。",
'zh-tw': "減少這隻寶可夢身上放置的傷害指示物的數量×10點傷害。",
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