mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
52 lines
802 B
TypeScript
52 lines
802 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV1a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ラウドボーンex"
|
||
},
|
||
|
||
illustrator: "kantaro",
|
||
category: "Pokemon",
|
||
hp: 340,
|
||
types: ["Fire"],
|
||
stage: "Stage2",
|
||
suffix: "EX",
|
||
|
||
attacks: [{
|
||
cost: ["Fire"],
|
||
|
||
name: {
|
||
ja: "かつりょくのうた"
|
||
},
|
||
|
||
damage: 50,
|
||
|
||
effect: {
|
||
ja: "自分のポケモン全員のHPを、それぞれ「30」回復する。"
|
||
}
|
||
}, {
|
||
cost: ["Fire", "Fire"],
|
||
|
||
name: {
|
||
ja: "バーニングボイス"
|
||
},
|
||
|
||
damage: "270-",
|
||
|
||
effect: {
|
||
ja: "このポケモンにのっているダメカンの数×10ダメージぶん、このワザのダメージは小さくなる。"
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3
|
||
}
|
||
|
||
export default card |