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

52 lines
868 B
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 "../S9a"
const card: Card = {
set: Set,
name: {
ja: "ビリジオンV"
},
illustrator: "Saki Hayashiro",
category: "Pokemon",
hp: 200,
types: ["Grass"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
ja: "わかくさのかぜ"
},
effect: {
ja: "このポケモンがいるかぎり、エネルギーがついている自分のポケモン全員は、特殊状態にならず、受けている特殊状態は、すべて回復する。"
}
}],
attacks: [{
cost: ["Grass", "Grass", "Colorless"],
name: {
ja: "エメラルドブレード"
},
damage: 200,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card