1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

53 lines
932 B
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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "ムゲンダイナ"
},
illustrator: "AKIRA EGAWA",
rarity: "Rare",
category: "Pokemon",
dexId: [890],
hp: 150,
types: ["Dragon"],
description: {
ja: "胸の コアが ガラル地方の 大地から 涌きだす エネルギーを 吸収して 活動している。"
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ダイナブラスト"
},
damage: "10",
effect: {
ja: "相手のバトルポケモンが「ポケモンex」なら、80ダメージ追加。"
}
}, {
cost: ["Fire", "Darkness", "Darkness"],
name: {
ja: "ワールドエンド"
},
damage: 230,
effect: {
ja: "場に出ているスタジアムをトラッシュする。トラッシュできないなら、このワザは失敗。"
}
}],
retreat: 2
}
export default card