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

43 lines
755 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 "../S9"
const card: Card = {
set: Set,
name: {
ja: "フライゴンV"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 220,
types: ["Dragon"],
stage: "Basic",
suffix: "V",
attacks: [{
cost: ["Grass", "Fighting"],
name: {
ja: "すなしぶき"
},
damage: 70
}, {
cost: ["Grass", "Fighting", "Fighting", "Colorless"],
name: {
ja: "ドラゴンインパルス"
},
damage: "160",
effect: {
ja: "相手のバトルポケモンが「ポケモンVMAX」なら、160ダメージ追加。その場合、このポケモンについているエネルギーを3個選び、トラッシュする。"
}
}],
retreat: 2
}
export default card